diff options
author | Derek Schuff <dschuff@google.com> | 2016-05-10 17:44:48 +0000 |
---|---|---|
committer | Derek Schuff <dschuff@google.com> | 2016-05-10 17:44:48 +0000 |
commit | 060fd220932100462411c582e8866f55b55f7a09 (patch) | |
tree | 8bf954da2d76ab62363d7f27fdef5d3f3edf2075 /clang/test/CodeGenCXX/static-destructor.cpp | |
parent | cc42df4a3024d9785ac17867db0b3af5f25285e9 (diff) | |
download | bcm5719-llvm-060fd220932100462411c582e8866f55b55f7a09.tar.gz bcm5719-llvm-060fd220932100462411c582e8866f55b55f7a09.zip |
Clean up condition, add ARM to test
llvm-svn: 269086
Diffstat (limited to 'clang/test/CodeGenCXX/static-destructor.cpp')
-rw-r--r-- | clang/test/CodeGenCXX/static-destructor.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/clang/test/CodeGenCXX/static-destructor.cpp b/clang/test/CodeGenCXX/static-destructor.cpp index 8b1899301c6..1b6ca305563 100644 --- a/clang/test/CodeGenCXX/static-destructor.cpp +++ b/clang/test/CodeGenCXX/static-destructor.cpp @@ -1,5 +1,6 @@ // RUN: %clang_cc1 %s -triple=x86_64-pc-linux -emit-llvm -o - | FileCheck --check-prefix=X86 %s // RUN: %clang_cc1 %s -triple=wasm32 -emit-llvm -o - | FileCheck --check-prefix=WASM %s +// RUN: %clang_cc1 %s -triple=armv7-apple-darwin9 -emit-llvm -o - | FileCheck --check-prefix=WASM %s // Test that destructors are not passed directly to __cxa_atexit when their // signatures do not match the type of its first argument. |