1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-28 06:22:51 +01:00
llvm-mirror/test/Regression/Transforms/Reassociate/2002-05-15-MissedTree.ll

12 lines
263 B
LLVM
Raw Normal View History

; RUN: if as < %s | opt -reassociate -instcombine -constprop -die | dis | grep 5
; RUN: then exit 1
; RUN: else exit 0
; RUN: fi
int "test"(int %A, int %B) {
%W = add int %B, -5
%Y = add int %A, 5
%Z = add int %W, %Y
ret int %Z
}