[cfe-commits] r173576 - Specify non-GNU-ARM triples for key-function test.

Tim Northover Tim.Northover at arm.com
Sat Jan 26 07:27:54 PST 2013


Author: tnorthover
Date: Sat Jan 26 09:27:54 2013
New Revision: 173576

URL: http://llvm.org/viewvc/llvm-project?rev=173576&view=rev
Log:
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.

Modified:
    cfe/trunk/test/CodeGenCXX/key-function-vtable.cpp

Modified: cfe/trunk/test/CodeGenCXX/key-function-vtable.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenCXX/key-function-vtable.cpp?rev=173576&r1=173575&r2=173576&view=diff
==============================================================================
--- cfe/trunk/test/CodeGenCXX/key-function-vtable.cpp (original)
+++ cfe/trunk/test/CodeGenCXX/key-function-vtable.cpp Sat Jan 26 09:27:54 2013
@@ -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(); };





More information about the cfe-commits mailing list