Test commit. Removed trailing whitespace.
[oota-llvm.git] / test / CodeGen / PowerPC / lha.ll
index d4a6673ced28a327e6b09c663e64759fcc552d33..3a100c1aae6d692a85253de3b825a37bea898e3e 100644 (file)
@@ -1,9 +1,8 @@
-; RUN: llvm-as < %s | llc -march=ppc32 | grep lha
-; XFAIL: *
+; RUN: llc < %s -march=ppc32 | grep lha
 
-uint %test(short* %a) {
-entry:
-    %tmp.1 = load short* %a
-    %tmp.2 = cast short %tmp.1 to uint
-    ret uint %tmp.2
+define i32 @test(i16* %a) {
+        %tmp.1 = load i16* %a           ; <i16> [#uses=1]
+        %tmp.2 = sext i16 %tmp.1 to i32         ; <i32> [#uses=1]
+        ret i32 %tmp.2
 }
+