X-Git-Url: http://plrg.eecs.uci.edu/git/?a=blobdiff_plain;f=test%2FCodeGen%2FMSP430%2Fshifts.ll;h=22ae59ef4b0f713ac090dd8e06589377d57f971f;hb=7b8bd88d4597339cec0103d6c1df3f29316ea867;hp=b5b3054b9621f1cfaf32cd80941c6720d65519fa;hpb=74a265686dd3e816c0f580c77d07fbb9e8bf3ddd;p=oota-llvm.git diff --git a/test/CodeGen/MSP430/shifts.ll b/test/CodeGen/MSP430/shifts.ll index b5b3054b962..22ae59ef4b0 100644 --- a/test/CodeGen/MSP430/shifts.ll +++ b/test/CodeGen/MSP430/shifts.ll @@ -4,7 +4,7 @@ target triple = "msp430-elf" define zeroext i8 @lshr8(i8 zeroext %a, i8 zeroext %cnt) nounwind readnone { entry: -; CHECK: lshr8: +; CHECK-LABEL: lshr8: ; CHECK: rrc.b %shr = lshr i8 %a, %cnt ret i8 %shr @@ -12,7 +12,7 @@ entry: define signext i8 @ashr8(i8 signext %a, i8 zeroext %cnt) nounwind readnone { entry: -; CHECK: ashr8: +; CHECK-LABEL: ashr8: ; CHECK: rra.b %shr = ashr i8 %a, %cnt ret i8 %shr @@ -28,7 +28,7 @@ entry: define zeroext i16 @lshr16(i16 zeroext %a, i16 zeroext %cnt) nounwind readnone { entry: -; CHECK: lshr16: +; CHECK-LABEL: lshr16: ; CHECK: rrc.w %shr = lshr i16 %a, %cnt ret i16 %shr @@ -36,7 +36,7 @@ entry: define signext i16 @ashr16(i16 signext %a, i16 zeroext %cnt) nounwind readnone { entry: -; CHECK: ashr16: +; CHECK-LABEL: ashr16: ; CHECK: rra.w %shr = ashr i16 %a, %cnt ret i16 %shr @@ -44,7 +44,7 @@ entry: define zeroext i16 @shl16(i16 zeroext %a, i16 zeroext %cnt) nounwind readnone { entry: -; CHECK: shl16: +; CHECK-LABEL: shl16: ; CHECK: rla.w %shl = shl i16 %a, %cnt ret i16 %shl