[WinEH] Disallow cyclic unwinds
[oota-llvm.git] / test / CodeGen / Mips / setultk.ll
index 75b270ed8428877ee8c383b766634e0c0c801c1b..c1ef0aa0b0596242c29d6c84e63b9695e9cac9ef 100644 (file)
@@ -1,4 +1,4 @@
-; RUN: llc  -march=mipsel -mcpu=mips16 -relocation-model=pic -O3 < %s | FileCheck %s -check-prefix=16
+; RUN: llc  -march=mipsel -mattr=mips16 -relocation-model=pic -O3 < %s | FileCheck %s -check-prefix=16
 
 @j = global i32 5, align 4
 @k = global i32 10, align 4
 
 define void @test() nounwind {
 entry:
-  %0 = load i32* @j, align 4
+  %0 = load i32, i32* @j, align 4
   %cmp = icmp ult i32 %0, 10
   %conv = zext i1 %cmp to i32
   store i32 %conv, i32* @r1, align 4
-; 16:  sltiu   $[[REGISTER:[0-9]+]], 10
-; 16:  move    $[[REGISTER]], $t8
+; 16:  sltiu   ${{[0-9]+}}, 10 # 16 bit inst
+; 16:  move    ${{[0-9]+}}, $24
   ret void
 }