mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-29 02:56:06 +00:00

AT_producer. Which includes clang's version information so we can tell which version of the compiler was used. This is second of the two steps to allow us to do this. The first was a change to llvm-mc with revision 172630 to provide a method to set the AT_producer string. This second step has the clang driver passing the value of getClangFullVersion() via the new flag -dwarf-debug-producer when invoking the integrated assembler on assembly source files. Then using the new setDwarfDebugProducer() method to set the AT_producer string. rdar://12888242 llvm-svn: 172758
18 lines
581 B
C
18 lines
581 B
C
// RUN: env RC_DEBUG_OPTIONS=1 %clang -target i386-apple-darwin9 -g -Os %s -emit-llvm -S -o - | FileCheck %s
|
|
// <rdar://problem/7256886>
|
|
// RUN: touch %t.s
|
|
// RUN: env RC_DEBUG_OPTIONS=1 %clang -### -target i386-apple-darwin9 -c -g %t.s 2>&1 | FileCheck -check-prefix=S %s
|
|
// <rdar://problem/12955296>
|
|
// RUN: %clang -### -target i386-apple-darwin9 -c -g %t.s 2>&1 | FileCheck -check-prefix=P %s
|
|
|
|
// CHECK: !0 = metadata !{
|
|
// CHECK: -g -Os
|
|
// CHECK: -mmacosx-version-min=10.5.0
|
|
// CHECK: [ DW_TAG_compile_unit ]
|
|
|
|
int x;
|
|
|
|
// S: "-dwarf-debug-flags"
|
|
|
|
// P: "-dwarf-debug-producer"
|