mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 03:33:20 +01:00
a62270de2c
The reversion apparently deleted the test/Transforms directory. Will be re-reverting again. llvm-svn: 358552
19 lines
435 B
LLVM
19 lines
435 B
LLVM
; RUN: opt -gvn -S < %s | FileCheck %s
|
|
|
|
declare void @use(i1)
|
|
|
|
define void @test1(float %x, float %y) {
|
|
entry:
|
|
%cmp1 = fcmp nnan oeq float %y, %x
|
|
%cmp2 = fcmp oeq float %x, %y
|
|
call void @use(i1 %cmp1)
|
|
call void @use(i1 %cmp2)
|
|
ret void
|
|
}
|
|
|
|
; CHECK-LABEL: define void @test1(
|
|
; CHECK: %[[cmp:.*]] = fcmp oeq float %y, %x
|
|
; CHECK-NEXT: call void @use(i1 %[[cmp]])
|
|
; CHECK-NEXT: call void @use(i1 %[[cmp]])
|
|
; CHECK-NEXT: ret void
|