diff options
author | Tim Northover <Tim.Northover@arm.com> | 2013-01-26 15:27:54 +0000 |
---|---|---|
committer | Tim Northover <Tim.Northover@arm.com> | 2013-01-26 15:27:54 +0000 |
commit | 9eca9f7da9166a9100020d3de19584216f95d67a (patch) | |
tree | df3f4ecbdaa6a2b81d4068fad39589b226839324 /test/CodeGenCXX/key-function-vtable.cpp | |
parent | 7d9f07732b85f1b2989c640065512a6af9a0f49a (diff) |
Specify non-GNU-ARM triples for key-function test.
Since ARM has diverging ABIs on this detail, it's probably worth
testing both it and a "normal" Itanium system.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@173576 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGenCXX/key-function-vtable.cpp')
-rw-r--r-- | test/CodeGenCXX/key-function-vtable.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/CodeGenCXX/key-function-vtable.cpp b/test/CodeGenCXX/key-function-vtable.cpp index 8e474bdf95..0ecd898058 100644 --- a/test/CodeGenCXX/key-function-vtable.cpp +++ b/test/CodeGenCXX/key-function-vtable.cpp @@ -1,4 +1,5 @@ -// RUN: %clang_cc1 %s -emit-llvm -o - | FileCheck %s +// RUN: %clang_cc1 -triple x86_64-none-linux-gnu %s -emit-llvm -o - | FileCheck %s +// RUN: %clang_cc1 -triple arm-apple-darwin %s -emit-llvm -o - | FileCheck %s // Simple key function test struct testa { virtual void a(); }; |