mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-04 06:09:05 +00:00
a24653cdfc
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12333 91177308-0d34-0410-b5e6-96231b3b80d8
14 lines
246 B
LLVM
14 lines
246 B
LLVM
; RUN: llvm-as < %s | opt -ds-aa -load-vn -gcse -instcombine | llvm-dis | not grep sub
|
|
|
|
void %bar(int* %p) {
|
|
ret void
|
|
}
|
|
|
|
int %foo(int* %a) {
|
|
%b = load int* %a
|
|
call void %bar(int* %a)
|
|
%d = load int* %a
|
|
%e = sub int %b, %d
|
|
ret int %e
|
|
}
|