diff options
author | Hans Wennborg <hans@hanshq.net> | 2014-05-19 17:23:01 +0000 |
---|---|---|
committer | Hans Wennborg <hans@hanshq.net> | 2014-05-19 17:23:01 +0000 |
commit | 5161db61a9f6fc28d86397a90e1efe772c20c0e6 (patch) | |
tree | e3dda0939d470c816b44707ceabe75d89f2c0103 | |
parent | caea13185e74a85509fe6674b4331d68656d9164 (diff) | |
download | bcm5719-llvm-5161db61a9f6fc28d86397a90e1efe772c20c0e6.tar.gz bcm5719-llvm-5161db61a9f6fc28d86397a90e1efe772c20c0e6.zip |
test/CodeGenCXX/dllexport.cpp: -O2 and -disable-llvm-optzns aren't nedded
We only need them on the dllimport.cpp test to make sure that we emit code
for available_externaly functions, and don't inline the IR.
llvm-svn: 209145
-rw-r--r-- | clang/test/CodeGenCXX/dllexport.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/CodeGenCXX/dllexport.cpp b/clang/test/CodeGenCXX/dllexport.cpp index 372ed8a0b2c..7f11d455e3f 100644 --- a/clang/test/CodeGenCXX/dllexport.cpp +++ b/clang/test/CodeGenCXX/dllexport.cpp @@ -1,4 +1,4 @@ -// RUN: %clang_cc1 -triple i686-pc-win32 -x c++ -O2 -disable-llvm-optzns -emit-llvm < %s | FileCheck %s +// RUN: %clang_cc1 -triple i686-pc-win32 -x c++ -emit-llvm < %s | FileCheck %s #define DLLEXPORT __declspec(dllexport) |