The motivation is that the update script has at least two deviations (`<...>@GOT`/`<...>@PLT`/ and not hiding pointer arithmetics) from what pretty much all the checklines were generated with, and most of the tests are still not updated, so each time one of the non-up-to-date tests is updated to see the effect of the code change, there is a lot of noise. Instead of having to deal with that each time, let's just deal with everything at once. This has been done via: ``` cd llvm-project/llvm/test/CodeGen/X86 grep -rl "; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py" | xargs -L1 <...>/llvm-project/llvm/utils/update_llc_test_checks.py --llc-binary <...>/llvm-project/build/bin/llc ``` Not all tests were regenerated, however.
40 lines
977 B
LLVM
40 lines
977 B
LLVM
; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
|
|
; RUN: llc < %s -mtriple=x86_64-unknown-unknown | FileCheck %s
|
|
|
|
declare void @free_v()
|
|
|
|
define void @f(i32* %x, i32 %c32, i32* %y) nounwind {
|
|
; CHECK-LABEL: f:
|
|
; CHECK: # %bb.0: # %entry
|
|
; CHECK-NEXT: pushq %rbp
|
|
; CHECK-NEXT: pushq %r14
|
|
; CHECK-NEXT: pushq %rbx
|
|
; CHECK-NEXT: movq %rdx, %r14
|
|
; CHECK-NEXT: movl %esi, %ebp
|
|
; CHECK-NEXT: movl (%rdi), %ebx
|
|
; CHECK-NEXT: callq free_v@PLT
|
|
; CHECK-NEXT: testl %ebp, %ebp
|
|
; CHECK-NEXT: je .LBB0_2
|
|
; CHECK-NEXT: # %bb.1: # %left
|
|
; CHECK-NEXT: movl %ebx, (%r14)
|
|
; CHECK-NEXT: .LBB0_2: # %merge
|
|
; CHECK-NEXT: popq %rbx
|
|
; CHECK-NEXT: popq %r14
|
|
; CHECK-NEXT: popq %rbp
|
|
; CHECK-NEXT: retq
|
|
entry:
|
|
%v = load i32, i32* %x, !invariant.load !0
|
|
call void @free_v()
|
|
%c = icmp ne i32 %c32, 0
|
|
br i1 %c, label %left, label %merge
|
|
|
|
left:
|
|
store i32 %v, i32* %y
|
|
br label %merge
|
|
|
|
merge:
|
|
ret void
|
|
}
|
|
|
|
!0 = !{}
|