This was promised 5 years ago in https://reviews.llvm.org/D32796, let's do it. Both flags are still accepted. No behavior change except for which form shows up in --help output and in dumps of internal state (such as with RC_DEBUG_OPTIONS). Differential Revision: https://reviews.llvm.org/D129226
19 lines
712 B
C
19 lines
712 B
C
// RUN: env RC_DEBUG_OPTIONS=1 %clang -target i386-apple-darwin9 -I "path with \spaces" -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: distinct !DICompileUnit(
|
|
// CHECK-SAME: flags:
|
|
// CHECK-SAME: -I path\\ with\\ \\\\spaces
|
|
// CHECK-SAME: -g -Os
|
|
// CHECK-SAME: -mmacos-version-min=10.5.0
|
|
|
|
int x;
|
|
|
|
// S: "-dwarf-debug-flags"
|
|
|
|
// P: "-dwarf-debug-producer"
|