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 | 20122ad27d3a750375f83ecccb2acf1832244447 (patch) | |
tree | d0e147869a477c8e7724778cb6b204dfbe72f1c1 | |
parent | 19ae7a88b011c0306ea69fecb66a0f2827ad686d (diff) | |
download | bcm5719-llvm-20122ad27d3a750375f83ecccb2acf1832244447.tar.gz bcm5719-llvm-20122ad27d3a750375f83ecccb2acf1832244447.zip |
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.
llvm-svn: 173576
-rw-r--r-- | clang/test/CodeGenCXX/key-function-vtable.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/clang/test/CodeGenCXX/key-function-vtable.cpp b/clang/test/CodeGenCXX/key-function-vtable.cpp index 8e474bdf95f..0ecd8980585 100644 --- a/clang/test/CodeGenCXX/key-function-vtable.cpp +++ b/clang/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(); }; |