For PR1336:
authorReid Spencer <rspencer@reidspencer.com>
Mon, 16 Apr 2007 02:09:24 +0000 (02:09 +0000)
committerReid Spencer <rspencer@reidspencer.com>
Mon, 16 Apr 2007 02:09:24 +0000 (02:09 +0000)
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

test/Transforms/GlobalOpt/memset.ll

index 8f9884bc27a1ed2c4070fc4bbf50948a6388e9be..336a234e4d2a0535b814cddcd59aa76c3e4c24ab 100644 (file)
@@ -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
 }