mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 03:33:20 +01:00
fe32b980b3
When building LLVM as a (potentially dynamic) library that can be linked against by multiple compilers, the default triple is not really meaningful. We allow to explicitely set it to an empty string when configuring LLVM. In this case, said "target independent" tests in the test suite that are using the default triple are disabled by matching the newly available feature "default_triple". Reviewers: probinson, echristo Differential Revision: http://reviews.llvm.org/D12660 From: Mehdi Amini <mehdi.amini@apple.com> llvm-svn: 247775
22 lines
996 B
LLVM
22 lines
996 B
LLVM
; RUN: llc < %s | FileCheck %s
|
|
; Radar 10147769
|
|
; Do not unnecessarily use AT_specification DIE.
|
|
; CHECK-NOT: AT_specification
|
|
|
|
@a = common global [10 x i32] zeroinitializer, align 16
|
|
|
|
!llvm.dbg.cu = !{!0}
|
|
!llvm.module.flags = !{!12}
|
|
|
|
!0 = distinct !DICompileUnit(language: DW_LANG_C99, producer: "clang version 3.0 (trunk 140253)", isOptimized: true, emissionKind: 0, file: !11, enums: !2, retainedTypes: !2, subprograms: !2, globals: !3)
|
|
!2 = !{}
|
|
!3 = !{!5}
|
|
!5 = !DIGlobalVariable(name: "a", line: 1, isLocal: false, isDefinition: true, scope: null, file: !6, type: !7, variable: [10 x i32]* @a)
|
|
!6 = !DIFile(filename: "x.c", directory: "/private/tmp")
|
|
!7 = !DICompositeType(tag: DW_TAG_array_type, size: 320, align: 32, baseType: !8, elements: !9)
|
|
!8 = !DIBasicType(tag: DW_TAG_base_type, name: "int", size: 32, align: 32, encoding: DW_ATE_signed)
|
|
!9 = !{!10}
|
|
!10 = !DISubrange(count: 10)
|
|
!11 = !DIFile(filename: "x.c", directory: "/private/tmp")
|
|
!12 = !{i32 1, !"Debug Info Version", i32 3}
|