[x86] regenerate test checks; NFC
authorSanjay Patel <spatel@rotateright.com>
Mon, 15 Jan 2018 21:22:46 +0000 (21:22 +0000)
committerSanjay Patel <spatel@rotateright.com>
Mon, 15 Jan 2018 21:22:46 +0000 (21:22 +0000)
llvm-svn: 322519

llvm/test/CodeGen/X86/shift-pair.ll

index 01ebfcd..1e49a6c 100644 (file)
@@ -1,10 +1,13 @@
+; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
 ; RUN: llc < %s -mtriple=x86_64-- | FileCheck %s
 
 define i64 @test(i64 %A) {
-; CHECK: @test
-; CHECK: shrq $54
-; CHECK: andl $1020
-; CHECK: ret
+; CHECK-LABEL: test:
+; CHECK:       # %bb.0:
+; CHECK-NEXT:    shrq $54, %rdi
+; CHECK-NEXT:    andl $1020, %edi # imm = 0x3FC
+; CHECK-NEXT:    movq %rdi, %rax
+; CHECK-NEXT:    retq
     %B = lshr i64 %A, 56
     %C = shl i64 %B, 2
     ret i64 %C