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.
10 lines
352 B
10 lines
352 B
; RUN: llc < %s -mtriple=powerpc64le-unknown-linux-gnu -mcpu=pwr8 -verify-misched -stop-after=machine-scheduler -o - | FileCheck %s --check-prefix=CHECK-P8
|
|
|
|
; Verify XFLOADf64 didn't implict def 'rm'.
|
|
define double @rm() {
|
|
; CHECK-P8-LABEL: bb.0.entry
|
|
; CHECK-P8: %{{[0-9]+}}:vsfrc = XFLOADf64 $zero8, %{{[0-9]+}} ::
|
|
entry:
|
|
ret double 2.300000e+00
|
|
}
|