mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 03:33:20 +01:00
8728f4ed69
MIPS64 can generate constant +0.0 with a single DMTC1 instruction. llvm-svn: 146999
8 lines
171 B
LLVM
8 lines
171 B
LLVM
; RUN: llc < %s -march=mips64el -mcpu=mips64 -mattr=n64 | FileCheck %s
|
|
|
|
define double @foo1() nounwind readnone {
|
|
entry:
|
|
; CHECK: dmtc1 $zero
|
|
ret double 0.000000e+00
|
|
}
|