mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 00:11:00 +00:00
d180ac1109
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@26471 91177308-0d34-0410-b5e6-96231b3b80d8
12 lines
284 B
LLVM
12 lines
284 B
LLVM
; RUN: llvm-as < %s | llc -march=x86 | not grep 'subl.*%esp'
|
|
|
|
int %f(int %a, int %b) {
|
|
%tmp.2 = mul int %a, %a
|
|
%tmp.5 = shl int %a, ubyte 1
|
|
%tmp.6 = mul int %tmp.5, %b
|
|
%tmp.10 = mul int %b, %b
|
|
%tmp.7 = add int %tmp.10, %tmp.2
|
|
%tmp.11 = add int %tmp.7, %tmp.6
|
|
ret int %tmp.11
|
|
}
|