mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-25 20:23:11 +01:00
4e2def1840
TableGen had been nicely generating code to print a number of instructions using shorter aliases (and PowerPC has plenty of short mnemonics), but we were not calling it. For some of the aliases we support in the parser, TableGen can't infer the "inverse" alias relationship, so there is still more to do. Thus, after some hours of updating test cases... llvm-svn: 235616
16 lines
508 B
LLVM
16 lines
508 B
LLVM
; RUN: llc -mtriple=powerpc64-unknown-linux-gnu -mattr=-crbits < %s | FileCheck %s
|
|
;
|
|
; PR14751: Unsupported type in SelectionDAG::getConstantFP()
|
|
|
|
define fastcc void @_D3std4math4sqrtFNaNbNfcZc() {
|
|
entry:
|
|
br i1 undef, label %if, label %else
|
|
; CHECK: cmplwi 3, 0
|
|
if: ; preds = %entry
|
|
store { ppc_fp128, ppc_fp128 } zeroinitializer, { ppc_fp128, ppc_fp128 }* undef
|
|
ret void
|
|
|
|
else: ; preds = %entry
|
|
unreachable
|
|
}
|