forked from OSchip/llvm-project
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). llvm-svn: 317810
This commit is contained in:
parent
e04f032424
commit
5ac48bd9c8
|
@ -1,20 +1,10 @@
|
||||||
; RUN: opt -S -reassociate < %s | FileCheck %s
|
; 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) {
|
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:
|
wrapper_entry:
|
||||||
%2 = fsub float undef, %0
|
%2 = fsub float undef, %0
|
||||||
%3 = fsub float undef, %1
|
%3 = fsub float undef, %1
|
||||||
|
|
Loading…
Reference in New Issue