diff options
author | Mehdi Amini <mehdi.amini@apple.com> | 2016-03-13 21:05:23 +0000 |
---|---|---|
committer | Mehdi Amini <mehdi.amini@apple.com> | 2016-03-13 21:05:23 +0000 |
commit | 557c20a886d941ef830437d631b575c0c584586b (patch) | |
tree | 7dc25538b5d62864e222dda4e2523591945c8a1e /clang/test/CodeGen/mips64-class-return.cpp | |
parent | ba9fba81d633688eda342280580b8e2771b2ccc9 (diff) | |
download | bcm5719-llvm-557c20a886d941ef830437d631b575c0c584586b.tar.gz bcm5719-llvm-557c20a886d941ef830437d631b575c0c584586b.zip |
Remove compile time PreserveName in favor of a runtime cc1 -discard-value-names option
Summary:
This flag is enabled by default in the driver when NDEBUG is set. It
is forwarded on the LLVMContext to discard all value names (but
GlobalValue) for performance purpose.
This an improved version of D18024
Reviewers: echristo, chandlerc
Subscribers: cfe-commits
Differential Revision: http://reviews.llvm.org/D18127
From: Mehdi Amini <mehdi.amini@apple.com>
llvm-svn: 263394
Diffstat (limited to 'clang/test/CodeGen/mips64-class-return.cpp')
-rw-r--r-- | clang/test/CodeGen/mips64-class-return.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/CodeGen/mips64-class-return.cpp b/clang/test/CodeGen/mips64-class-return.cpp index 57fa8ef5109..af2dd5cbec2 100644 --- a/clang/test/CodeGen/mips64-class-return.cpp +++ b/clang/test/CodeGen/mips64-class-return.cpp @@ -1,4 +1,4 @@ -// RUN: %clang -target mips64el-unknown-linux -O3 -S -mabi=n64 -o - -emit-llvm %s | FileCheck %s +// RUN: %clang_cc1 -triple mips64el-unknown-linux -O3 -S -target-abi n64 -o - -emit-llvm %s | FileCheck %s class B0 { double d; |