diff options
author | Greg Bedwell <greg_bedwell@sn.scee.net> | 2015-09-25 16:11:00 +0000 |
---|---|---|
committer | Greg Bedwell <greg_bedwell@sn.scee.net> | 2015-09-25 16:11:00 +0000 |
commit | 80b325c79960803eefb053e9cfa388bb318fae1b (patch) | |
tree | 2898bcf41e719f394fda8a03b1485a6afc678198 /clang/test/Driver/debug-options.c | |
parent | 4d5dc31c9c55a3140b88af5f7c20114c652ea34f (diff) | |
download | bcm5719-llvm-80b325c79960803eefb053e9cfa388bb318fae1b.tar.gz bcm5719-llvm-80b325c79960803eefb053e9cfa388bb318fae1b.zip |
Revert "This patch adds missing pieces to clang, including the PS4 toolchain definition, added warnings, PS4 defaults, and Driver changes needed for our compiler."
This reverts commit r248546 to get our bot green again while we discuss the best way forward.
llvm-svn: 248578
Diffstat (limited to 'clang/test/Driver/debug-options.c')
-rw-r--r-- | clang/test/Driver/debug-options.c | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/clang/test/Driver/debug-options.c b/clang/test/Driver/debug-options.c index 86770141727..830305ad45d 100644 --- a/clang/test/Driver/debug-options.c +++ b/clang/test/Driver/debug-options.c @@ -27,17 +27,6 @@ // RUN: %clang -### -c -ggdb3 %s -target x86_64-apple-darwin 2>&1 \ // RUN: | FileCheck -check-prefix=G_DARWIN %s -// On the PS4, -g defaults to -gno-column-info, and we always generate the -// arange section. -// RUN: %clang -### -c %s -target x86_64-scei-ps4 2>&1 \ -// RUN: | FileCheck -check-prefix=G_PS4 %s -// RUN: %clang -### -c %s -g -target x86_64-scei-ps4 2>&1 \ -// RUN: | FileCheck -check-prefix=G_PS4 %s -// RUN: %clang -### -c %s -g -target x86_64-scei-ps4 2>&1 \ -// RUN: | FileCheck -check-prefix=NOCI %s -// RUN: %clang -### -c %s -g -gcolumn-info -target x86_64-scei-ps4 2>&1 \ -// RUN: | FileCheck -check-prefix=CI %s - // RUN: %clang -### -c -gdwarf-2 %s 2>&1 | FileCheck -check-prefix=G_D2 %s // // RUN: %clang -### -c -gfoo %s 2>&1 | FileCheck -check-prefix=G_NO %s @@ -97,9 +86,6 @@ // G_DARWIN: "-cc1" // G_DARWIN: "-gdwarf-2" // -// G_PS4: "-cc1" -// G_PS4: "-generate-arange-section" -// // G_D2: "-cc1" // G_D2: "-gdwarf-2" // |