mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-22 07:32:48 +00:00
10 lines
232 B
LLVM
10 lines
232 B
LLVM
|
; RUN: llvm-as < %s | opt -instcombine | llvm-dis | grep {add i32}
|
||
|
|
||
|
define double @x(i32 %a, i32 %b) nounwind {
|
||
|
%m = lshr i32 %a, 24
|
||
|
%n = and i32 %m, %b
|
||
|
%o = sitofp i32 %n to double
|
||
|
%p = add double %o, 1.0
|
||
|
ret double %p
|
||
|
}
|