You've already forked linux-packaging-mono
Imported Upstream version 5.18.0.247
Former-commit-id: 2d6af2e4ed0eda5cbdc2946446ef7718456ad190
This commit is contained in:
parent
279aa8f685
commit
ce8e504569
23
external/llvm/test/Transforms/GVN/commute.ll
vendored
23
external/llvm/test/Transforms/GVN/commute.ll
vendored
@ -1,23 +0,0 @@
|
||||
; RUN: opt -gvn -S < %s | FileCheck %s
|
||||
|
||||
declare void @use(i32, i32)
|
||||
|
||||
define void @foo(i32 %x, i32 %y) {
|
||||
; CHECK-LABEL: @foo(
|
||||
%add1 = add i32 %x, %y
|
||||
%add2 = add i32 %y, %x
|
||||
call void @use(i32 %add1, i32 %add2)
|
||||
; CHECK: @use(i32 %add1, i32 %add1)
|
||||
ret void
|
||||
}
|
||||
|
||||
declare void @vse(i1, i1)
|
||||
|
||||
define void @bar(i32 %x, i32 %y) {
|
||||
; CHECK-LABEL: @bar(
|
||||
%cmp1 = icmp ult i32 %x, %y
|
||||
%cmp2 = icmp ugt i32 %y, %x
|
||||
call void @vse(i1 %cmp1, i1 %cmp2)
|
||||
; CHECK: @vse(i1 %cmp1, i1 %cmp1)
|
||||
ret void
|
||||
}
|
Reference in New Issue
Block a user