mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 03:02:36 +01:00
ae62035cf0
Follow-up to D82607 Revert an accidental change (empty.ll) of D82683
20 lines
503 B
LLVM
20 lines
503 B
LLVM
; RUN: opt -early-cse -S < %s | FileCheck %s
|
|
; RUN: opt -basic-aa -early-cse-memssa -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
|