
This brings our tree to NetBSD 7.0, as found on -current on the 10-10-2015. This updates: - LLVM to 3.6.1 - GCC to GCC 5.1 - Replace minix/commands/zdump with usr.bin/zdump - external/bsd/libelf has moved to /external/bsd/elftoolchain/ - Import ctwm - Drop sprintf from libminc Change-Id: I149836ac18e9326be9353958bab9b266efb056f0
22 lines
691 B
C
22 lines
691 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: !0 = !{
|
|
// CHECK: -I path\5C with\5C \5C\5Cspaces
|
|
// 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"
|
|
|
|
// This depends on shell quoting.
|
|
// REQUIRES: shell
|