diff options
author | Evan Cheng <evan.cheng@apple.com> | 2006-11-29 08:22:59 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2006-11-29 08:22:59 +0000 |
commit | b27c480d8413c6a749183ea780d816e4f9747fba (patch) | |
tree | 871f7563f9cfd2f599a4f2784394a1c2c5551b02 | |
parent | a90ba6c2aaaf30d1109d064305d361c89ff43ea3 (diff) | |
download | external_llvm-b27c480d8413c6a749183ea780d816e4f9747fba.zip external_llvm-b27c480d8413c6a749183ea780d816e4f9747fba.tar.gz external_llvm-b27c480d8413c6a749183ea780d816e4f9747fba.tar.bz2 |
Fix test.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32015 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/CodeGen/X86/2006-11-28-Memcpy.ll | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/test/CodeGen/X86/2006-11-28-Memcpy.ll b/test/CodeGen/X86/2006-11-28-Memcpy.ll index 313c0ac..0726f80 100644 --- a/test/CodeGen/X86/2006-11-28-Memcpy.ll +++ b/test/CodeGen/X86/2006-11-28-Memcpy.ll @@ -1,10 +1,8 @@ ; RUN: llvm-as < %s | llc -march=x86 && -; RUN: llvm-as < %s | llc -march=x86 | grep 3721182122 | wc -l | grep 1 && +; RUN: llvm-as < %s | llc -march=x86 | grep 3721182122 | wc -l | grep 2 && ; RUN: llvm-as < %s | llc -march=x86 | grep 'movl _bytes2' | wc -l | grep 1 ; PR1022, 1023 -; XFAIL: * - %fmt = constant [4 x sbyte] c"%x\0A\00" %bytes = constant [4 x sbyte] c"\AA\BB\CC\DD" %bytes2 = global [4 x sbyte] c"\AA\BB\CC\DD" |