mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 19:23:23 +01:00
f9bc1afbcf
Corresponds to Phabricator review: http://reviews.llvm.org/D16592 This fix includes both an update to how we handle the "generic" CPU on LE systems as well as Anton's fix for the Fast Isel issue. llvm-svn: 262233
15 lines
451 B
LLVM
15 lines
451 B
LLVM
; RUN: llc -mcpu=generic -mtriple=powerpc64le-unknown-unknown -O0 < %s | FileCheck %s --check-prefix=GENERIC
|
|
; RUN: llc -mcpu=ppc -mtriple=powerpc64le-unknown-unknown -O0 < %s | FileCheck %s
|
|
|
|
define i32 @bad(double %x) {
|
|
%1 = fptoui double %x to i32
|
|
ret i32 %1
|
|
}
|
|
|
|
; CHECK: fctidz 1, 1
|
|
; CHECK: stfd 1, [[OFF:.*]](1)
|
|
; CHECK: lwz {{[0-9]*}}, [[OFF]](1)
|
|
; GENERIC: fctiwuz 1, 1
|
|
; GENERIC: stfd 1, [[OFF:.*]](1)
|
|
; GENERIC: lwz {{[0-9]*}}, [[OFF]](1)
|