mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 19:52:54 +01:00
aa81dc7d21
we're using SSE or not. This fixes PR2122. llvm-svn: 48006
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
|
|
}
|