diff options
author | Manman Ren <manman.ren@gmail.com> | 2013-11-20 20:22:14 +0000 |
---|---|---|
committer | Manman Ren <manman.ren@gmail.com> | 2013-11-20 20:22:14 +0000 |
commit | 17bdb0f815e6243e23dc38a39dc1b8ee5aee610c (patch) | |
tree | ab4adb376d5e47148599e11e0430c3760142e1d0 /clang/test | |
parent | c8160d65239e4c91930f896f0cc8921fa2f9720d (diff) | |
download | bcm5719-llvm-17bdb0f815e6243e23dc38a39dc1b8ee5aee610c.tar.gz bcm5719-llvm-17bdb0f815e6243e23dc38a39dc1b8ee5aee610c.zip |
Set default Dwarf Version for -gline-tables-only on Darwin to 2.
We are still using Dwarf Version 2 for Darwin systems, make it consistent
with -gline-tables-only.
This should fix an internal buildbot.
llvm-svn: 195267
Diffstat (limited to 'clang/test')
-rw-r--r-- | clang/test/Driver/debug-options.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/clang/test/Driver/debug-options.c b/clang/test/Driver/debug-options.c index 1f890b2e67f..526083719d8 100644 --- a/clang/test/Driver/debug-options.c +++ b/clang/test/Driver/debug-options.c @@ -35,6 +35,8 @@ // // RUN: %clang -### -c -gline-tables-only %s 2>&1 \ // RUN: | FileCheck -check-prefix=GLTO_ONLY %s +// RUN: %clang -### -c -gline-tables-only %s -target x86_64-apple-darwin 2>&1 \ +// RUN: | FileCheck -check-prefix=GLTO_ONLY_DARWIN %s // RUN: %clang -### -c -gline-tables-only -g %s -target x86_64-linux-gnu 2>&1 \ // RUN: | FileCheck -check-prefix=G_ONLY %s // RUN: %clang -### -c -gline-tables-only -g %s -target x86_64-apple-darwin 2>&1 \ @@ -66,6 +68,12 @@ // GLTO_ONLY: "-gline-tables-only" // GLTO_ONLY-NOT: "-g" // +// GLTO_ONLY_DARWIN: "-cc1" +// GLTO_ONLY_DARWIN-NOT: "-g" +// GLTO_ONLY_DARWIN: "-gline-tables-only" +// GLTO_ONLY_DARWIN: "-gdwarf-2" +// GLTO_ONLY_DARWIN-NOT: "-g" +// // G_ONLY: "-cc1" // G_ONLY-NOT: "-gline-tables-only" // G_ONLY: "-g" |