2016-08-04 02:17:35 +08:00
|
|
|
; RUN: llc -verify-machineinstrs -O0 -mtriple=powerpc-unknown-linux-gnu < %s | FileCheck %s
|
|
|
|
; RUN: llc -verify-machineinstrs -O0 -mtriple=powerpc64-unknown-linux-gnu < %s | FileCheck %s
|
2012-10-11 04:54:15 +08:00
|
|
|
|
|
|
|
; This verifies that the code to update VRSAVE has been removed for SVR4.
|
|
|
|
|
|
|
|
define <4 x float> @bar(<4 x float> %v) nounwind {
|
|
|
|
entry:
|
|
|
|
%v.addr = alloca <4 x float>, align 16
|
|
|
|
store <4 x float> %v, <4 x float>* %v.addr, align 16
|
2015-02-28 05:17:42 +08:00
|
|
|
%0 = load <4 x float>, <4 x float>* %v.addr, align 16
|
2012-10-11 04:54:15 +08:00
|
|
|
ret <4 x float> %0
|
|
|
|
}
|
|
|
|
|
|
|
|
; CHECK-NOT: mfspr
|
|
|
|
; CHECK-NOT: mtspr
|