You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
407 B
14 lines
407 B
; RUN: llc < %s -march=mipsel -mcpu=mips32r2 -mattr=+micromips | FileCheck %s
|
|
; RUN: llc < %s -march=mips -mcpu=mips32r2 -mattr=+micromips | FileCheck %s
|
|
; RUN: llc < %s -march=mips -mcpu=mips32r6 -mattr=+micromips | FileCheck %s
|
|
|
|
define float @sqrt_fn(float %value) #0 {
|
|
entry:
|
|
%sqrtf = tail call float @sqrtf(float %value) #0
|
|
ret float %sqrtf
|
|
}
|
|
|
|
declare float @sqrtf(float)
|
|
|
|
; CHECK: sqrt.s $f0, $f12
|