1; RUN: llc < %s -mtriple=powerpc64-apple-darwin -mcpu=g5 | FileCheck %s
2target datalayout = "E-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-f128:128:128-v128:128:128-n32:64"
3target triple = "powerpc64-apple-darwin"
4
5define <4 x float> @foo(<4 x float> %a, <4 x float> %b) nounwind {
6entry:
7  %c = fadd <4 x float> %a, %b
8  %d = fmul <4 x float> %c, %a
9  call void asm sideeffect "", "~{VRsave}"() nounwind
10  br label %return
11
12; CHECK: @foo
13; CHECK: mfspr r{{[0-9]+}}, 256
14; CHECK: mtspr 256, r{{[0-9]+}}
15
16return:                                           ; preds = %entry
17  ret <4 x float> %d
18}
19
20