diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2007-04-16 02:09:24 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2007-04-16 02:09:24 +0000 |
commit | 1cd9d77a7dd9eacf0f331dfbf5ff875668ceb604 (patch) | |
tree | b9a264eda02c369f6c227e6da175a8f8c0996269 | |
parent | a37e588667c5a5056565dc0f7bd8fd066fbee193 (diff) |
For PR1336:
Correct this test case. It was passing a uint where a ubyte was expected.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@36101 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/Transforms/GlobalOpt/memset.ll | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/test/Transforms/GlobalOpt/memset.ll b/test/Transforms/GlobalOpt/memset.ll index 8f9884bc27..336a234e4d 100644 --- a/test/Transforms/GlobalOpt/memset.ll +++ b/test/Transforms/GlobalOpt/memset.ll @@ -2,7 +2,6 @@ ; RUN: llvm-upgrade < %s | llvm-as | opt -globalopt | llvm-dis | \ ; RUN: not grep internal -; XFAIL: * %G0 = internal global [58 x sbyte] c"asdlfkajsdlfkajsd;lfkajds;lfkjasd;flkajsd;lkfja;sdlkfjasd\00" @@ -17,7 +16,7 @@ void %foo() { %Blah = alloca [58 x sbyte] ; <[58 x sbyte]*> [#uses=2] %tmp3 = cast [58 x sbyte]* %Blah to sbyte* call void %llvm.memcpy.i32( sbyte* cast ([4 x int]* %G1 to sbyte*), sbyte* %tmp3, uint 16, uint 1) - call void %llvm.memset.i32( sbyte* getelementptr ([58 x sbyte]* %G0, int 0, int 0), uint 17, uint 58, uint 1) + call void %llvm.memset.i32( sbyte* getelementptr ([58 x sbyte]* %G0, int 0, int 0), ubyte 17, uint 58, uint 1) ret void } |