mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-14 13:07:31 +00:00
8 lines
209 B
LLVM
8 lines
209 B
LLVM
|
; RUN: llvm-as < %s | llc -march=x86 -mcpu=i386
|
||
|
; PR2122
|
||
|
define float @func(float %a, float %b) nounwind {
|
||
|
entry:
|
||
|
%tmp3 = frem float %a, %b ; <float> [#uses=1]
|
||
|
ret float %tmp3
|
||
|
}
|