From: Daniel Dunbar Date: Wed, 22 Apr 2009 07:28:06 +0000 (+0000) Subject: Make sure this test runs on all 3 Objective-C implementations. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d2977bcfee782bd2ad08c3ffb5e5386f5c7f7c17;p=clang Make sure this test runs on all 3 Objective-C implementations. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@69786 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/CodeGenObjC/bitfield-1.m b/test/CodeGenObjC/bitfield-1.m index d7396b1dd2..06ea91132e 100644 --- a/test/CodeGenObjC/bitfield-1.m +++ b/test/CodeGenObjC/bitfield-1.m @@ -1,4 +1,6 @@ -// RUN: clang-cc -fnext-runtime -emit-llvm -o %t %s +// RUN: clang-cc -triple x86_64-apple-darwin9 -fnext-runtime -emit-llvm -o %t %s && +// RUN: clang-cc -triple i386-apple-darwin9 -fnext-runtime -emit-llvm -o %t %s && +// RUN: clang-cc -triple i386-pc-linux-gnu -emit-llvm -o %t %s @interface Object - (id) alloc;