mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-02 07:11:49 +00:00
Testcase to ensure trees structures are correctly linearized
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2632 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
11d13fbfba
commit
b064baf851
11
test/Transforms/Reassociate/2002-05-15-MissedTree.ll
Normal file
11
test/Transforms/Reassociate/2002-05-15-MissedTree.ll
Normal file
@ -0,0 +1,11 @@
|
||||
; 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
|
||||
}
|
Loading…
Reference in New Issue
Block a user