2022-08-05 13:49:39 -04:00
|
|
|
// RUN: env RC_DEBUG_OPTIONS=1 %clang -target i386-apple-darwin11 -I "path with \spaces" -g -Os %s -emit-llvm -S -o - | FileCheck %s
|
2011-12-22 19:31:58 +00:00
|
|
|
// RUN: touch %t.s
|
2022-08-05 13:49:39 -04:00
|
|
|
// RUN: env RC_DEBUG_OPTIONS=1 %clang -### -target i386-apple-darwin11 -c -g %t.s 2>&1 | FileCheck -check-prefix=S %s
|
|
|
|
// RUN: %clang -### -target i386-apple-darwin11 -c -g %t.s 2>&1 | FileCheck -check-prefix=P %s
|
2009-12-18 02:43:17 +00:00
|
|
|
|
2016-09-13 01:13:19 +00:00
|
|
|
// CHECK: distinct !DICompileUnit(
|
2015-03-03 17:25:55 +00:00
|
|
|
// CHECK-SAME: flags:
|
2019-10-10 18:36:41 +00:00
|
|
|
// CHECK-SAME: -I path\\ with\\ \\\\spaces
|
2015-03-03 17:25:55 +00:00
|
|
|
// CHECK-SAME: -g -Os
|
2022-08-05 13:49:39 -04:00
|
|
|
// CHECK-SAME: -mmacos-version-min=10.7.0
|
2009-12-18 02:43:17 +00:00
|
|
|
|
|
|
|
int x;
|
2011-12-22 19:31:58 +00:00
|
|
|
|
|
|
|
// S: "-dwarf-debug-flags"
|
2013-01-17 21:38:06 +00:00
|
|
|
|
|
|
|
// P: "-dwarf-debug-producer"
|