[llvm-commits] CVS: llvm/test/Regression/CodeGen/ARM/fpmem.ll
Rafael Espindola
rafael.espindola at gmail.com
Tue Oct 17 11:29:33 PDT 2006
Changes in directory llvm/test/Regression/CodeGen/ARM:
fpmem.ll updated: 1.1 -> 1.2
---
Log message:
remove extra [] in stores
---
Diffs of the changes: (+10 -3)
fpmem.ll | 13 ++++++++++---
1 files changed, 10 insertions(+), 3 deletions(-)
Index: llvm/test/Regression/CodeGen/ARM/fpmem.ll
diff -u llvm/test/Regression/CodeGen/ARM/fpmem.ll:1.1 llvm/test/Regression/CodeGen/ARM/fpmem.ll:1.2
--- llvm/test/Regression/CodeGen/ARM/fpmem.ll:1.1 Tue Oct 17 13:04:53 2006
+++ llvm/test/Regression/CodeGen/ARM/fpmem.ll Tue Oct 17 13:29:14 2006
@@ -1,14 +1,21 @@
; RUN: llvm-as < %s | llc -march=arm &&
; RUN: llvm-as < %s | llc -march=arm | grep flds | wc -l | grep 2 &&
-; RUN: llvm-as < %s | llc -march=arm | grep "flds.*\[" | wc -l | grep 1
+; RUN: llvm-as < %s | llc -march=arm | grep "flds.*\[" | wc -l | grep 1 &&
+; RUN: llvm-as < %s | llc -march=arm | grep "fsts.*\[" | wc -l | grep 1
-float %g(float %a) {
+float %f1(float %a) {
entry:
ret float 0.000000e+00
}
-float %g(float* %v) {
+float %f2(float* %v) {
entry:
%tmp = load float* %v
ret float %tmp
}
+
+void %f3(float %a, float* %v) {
+entry:
+ store float %a, float* %v
+ ret void
+}
More information about the llvm-commits
mailing list