aboutsummaryrefslogtreecommitdiffstats
path: root/test/CodeGen/PowerPC/multiple-return-values.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/PowerPC/multiple-return-values.ll')
-rw-r--r--test/CodeGen/PowerPC/multiple-return-values.ll2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CodeGen/PowerPC/multiple-return-values.ll b/test/CodeGen/PowerPC/multiple-return-values.ll
index b72b148..3f75f7d 100644
--- a/test/CodeGen/PowerPC/multiple-return-values.ll
+++ b/test/CodeGen/PowerPC/multiple-return-values.ll
@@ -3,7 +3,7 @@
define {i64, float} @bar(i64 %a, float %b) {
%y = add i64 %a, 7
- %z = add float %b, 7.0
+ %z = fadd float %b, 7.0
ret i64 %y, float %z
}