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
394 B
14 lines
394 B
; RUN: llc -mcpu=generic -mtriple=powerpc64le-unknown-unknown -O0 < %s \
|
|
; RUN: -verify-machineinstrs | FileCheck %s --check-prefix=GENERIC
|
|
; RUN: llc -mcpu=ppc -mtriple=powerpc64le-unknown-unknown -O0 < %s \
|
|
; RUN: -verify-machineinstrs | FileCheck %s
|
|
|
|
define float @testRSP(double %x) {
|
|
entry:
|
|
%0 = fptrunc double %x to float
|
|
ret float %0
|
|
; CHECK: frsp 1, 1
|
|
; GENERIC: xsrsp 1, 1
|
|
}
|
|
|