mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-18 10:31:57 +00:00
11 lines
276 B
LLVM
11 lines
276 B
LLVM
|
; With shl->mul reassociation, we can see that this is (shl A, 9) * A
|
||
|
;
|
||
|
; RUN: llvm-as < %s | opt -reassociate -instcombine | llvm-dis | grep 'shl .*, ubyte 9'
|
||
|
|
||
|
int %test(int %A, int %B) {
|
||
|
%X = shl int %A, ubyte 5
|
||
|
%Y = shl int %A, ubyte 4
|
||
|
%Z = mul int %Y, %X
|
||
|
ret int %Z
|
||
|
}
|