diff options
Diffstat (limited to 'clang/test/Driver/debug-options.c')
-rw-r--r-- | clang/test/Driver/debug-options.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/clang/test/Driver/debug-options.c b/clang/test/Driver/debug-options.c index 0d42ee92d3a..867251971d2 100644 --- a/clang/test/Driver/debug-options.c +++ b/clang/test/Driver/debug-options.c @@ -5,10 +5,6 @@ // RUN: %clang -### -c -g3 %s 2>&1 | FileCheck -check-prefix=G3 %s // RUN: %clang -### -c -ganything %s 2>&1 | FileCheck -check-prefix=GANY %s // RUN: %clang -### -c -gfoo %s 2>&1 | FileCheck -check-prefix=GFOO %s -// 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 // // G: "-cc1" // G: "-g" @@ -21,6 +17,3 @@ // // GFOO: "-cc1" // GFOO-NOT: "-g" -// -// S: "-cc1as" -// S: "-g" |