From: Chris Lattner Date: Sat, 9 May 2009 17:36:58 +0000 (+0000) Subject: force a target triple so that the right greppable output happens. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=349ab51813c5b949e19a1593163c583ee006bb42;p=clang force a target triple so that the right greppable output happens. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@71361 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/CodeGen/atomic.c b/test/CodeGen/atomic.c index 0e7af23f7a..12a9910223 100644 --- a/test/CodeGen/atomic.c +++ b/test/CodeGen/atomic.c @@ -1,4 +1,4 @@ -// RUN: clang-cc %s -emit-llvm -o - > %t1 && +// RUN: clang-cc %s -emit-llvm -o - -triple=i686-apple-darwin9 > %t1 && // RUN: grep @llvm.atomic.load.add.i32 %t1 | count 3 && // RUN: grep @llvm.atomic.load.sub.i8 %t1 | count 2 && // RUN: grep @llvm.atomic.load.min.i32 %t1 &&