From: Tim Northover Date: Sat, 26 Jan 2013 15:27:54 +0000 (+0000) Subject: Specify non-GNU-ARM triples for key-function test. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9eca9f7da9166a9100020d3de19584216f95d67a;p=clang 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 --- 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(); };