revert r317809 - [Reassociate] regenerate test checks; NFC

The reassociate pass generates named values such as "%tmp2" which trips up the script's regex's
because the script uses a 'TMP' prefix for unnamed values (%2).



git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@317810 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Sanjay Patel 2017-11-09 16:46:04 +00:00
parent 0e0f70edce
commit 3b01bb69f0

View File

@ -1,20 +1,10 @@
; RUN: opt -S -reassociate < %s | FileCheck %s
; CHECK-LABEL: main
; CHECK: %2 = fsub
; CHECK: %3 = fsub
; CHECK: fadd fast float %3, %2
define void @main(float, float) {
; CHECK-LABEL: @main(
; CHECK-NEXT: wrapper_entry:
; CHECK-NEXT: [[TMP2:%.*]] = fsub float undef, %0
; CHECK-NEXT: [[TMP3:%.*]] = fsub float undef, %1
; CHECK-NEXT: [[TMP4:%.*]] = call float @llvm.rsqrt.f32(float undef)
; CHECK-NEXT: [[TMP3:%.*]] = fadd fast float [[TMP3]], [[TMP2]]
; CHECK-NEXT: [[TMP4:%.*]] = fmul fast float [[TMP3]], undef
; CHECK-NEXT: [[TMP1:%.*]] = fadd fast float [[TMP4]], fmul (float undef, float undef)
; CHECK-NEXT: [[TMP2:%.*]] = fmul fast float [[TMP1]], [[TMP4]]
; CHECK-NEXT: [[TMP5:%.*]] = call float @foo2(float [[TMP2]], float 0.000000e+00)
; CHECK-NEXT: [[MUL36:%.*]] = fmul fast float [[TMP5]], 1.500000e+00
; CHECK-NEXT: call void @foo1(i32 4, float [[MUL36]])
; CHECK-NEXT: ret void
;
wrapper_entry:
%2 = fsub float undef, %0
%3 = fsub float undef, %1