diff options
author | Tanya Lattner <tonic@nondot.org> | 2007-08-30 16:07:20 +0000 |
---|---|---|
committer | Tanya Lattner <tonic@nondot.org> | 2007-08-30 16:07:20 +0000 |
commit | cad62802f4a7e85f8eb6ecc34dbad179def2e8b2 (patch) | |
tree | 08cc05bf3bebe168165870e1a82be1c95a847a51 | |
parent | f4c3a59dbaa5e7a91fb1db1f7f989ffb60d5b982 (diff) |
Do not run on darwin.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@41608 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/CodeGen/X86/2004-02-12-Memcpy.llx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/CodeGen/X86/2004-02-12-Memcpy.llx b/test/CodeGen/X86/2004-02-12-Memcpy.llx index 56b8d3ba46..151c5a5e84 100644 --- a/test/CodeGen/X86/2004-02-12-Memcpy.llx +++ b/test/CodeGen/X86/2004-02-12-Memcpy.llx @@ -1,5 +1,5 @@ -; RUN: llvm-as < %s | llc -march=x86 | grep movs | count 1 -; RUN: llvm-as < %s | llc -march=x86 | grep memcpy | count 2 +; RUN: llvm-as < %s | llc -march=x86 -mtriple=i686-pc-linux-gnu | grep movs | count 1 +; RUN: llvm-as < %s | llc -march=x86 -mtriple=i686-pc-linux-gnu | grep memcpy | count 2 @A = global [32 x i32] zeroinitializer @B = global [32 x i32] zeroinitializer |