diff options
author | NAKAMURA Takumi <geek4civic@gmail.com> | 2011-12-31 02:36:23 +0000 |
---|---|---|
committer | NAKAMURA Takumi <geek4civic@gmail.com> | 2011-12-31 02:36:23 +0000 |
commit | 84a5dfdf727df09432aaa40ac72aa94e500326e4 (patch) | |
tree | 1fbdfb049b509b153ef0e656e427d9bad42faa72 /clang/test/Driver/debug-options-as.c | |
parent | 88eb4d3a456ab64507af790ac774eec2f0af6806 (diff) | |
download | bcm5719-llvm-84a5dfdf727df09432aaa40ac72aa94e500326e4.tar.gz bcm5719-llvm-84a5dfdf727df09432aaa40ac72aa94e500326e4.zip |
Split out clang/test/Driver/debug-options-as.c from debug-options.c, and mark it as XFAIL: mingw32.
Mingw32 target has not supported integrated-as yet.
llvm-svn: 147386
Diffstat (limited to 'clang/test/Driver/debug-options-as.c')
-rw-r--r-- | clang/test/Driver/debug-options-as.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/clang/test/Driver/debug-options-as.c b/clang/test/Driver/debug-options-as.c new file mode 100644 index 00000000000..0159e163025 --- /dev/null +++ b/clang/test/Driver/debug-options-as.c @@ -0,0 +1,10 @@ +// Check to make sure clang with -g on a .s file gets passed. +// rdar://9275556 +// RUN: touch %t.s +// RUN: %clang -### -c -g %t.s 2>&1 | FileCheck -check-prefix=S %s +// +// mingw has not supported integrated-as yet. +// XFAIL: mingw32 +// +// S: "-cc1as" +// S: "-g" |