[llvm-commits] CVS: llvm/test/Regression/CodeGen/ARM/fpmem.ll

Rafael Espindola rafael.espindola at gmail.com
Tue Oct 17 11:05:11 PDT 2006



Changes in directory llvm/test/Regression/CodeGen/ARM:

fpmem.ll added (r1.1)
---
Log message:

initial implementation of addressing mode 5


---
Diffs of the changes:  (+14 -0)

 fpmem.ll |   14 ++++++++++++++
 1 files changed, 14 insertions(+)


Index: llvm/test/Regression/CodeGen/ARM/fpmem.ll
diff -c /dev/null llvm/test/Regression/CodeGen/ARM/fpmem.ll:1.1
*** /dev/null	Tue Oct 17 13:05:03 2006
--- llvm/test/Regression/CodeGen/ARM/fpmem.ll	Tue Oct 17 13:04:53 2006
***************
*** 0 ****
--- 1,14 ----
+ ; 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
+ 
+ float %g(float %a) {
+ entry:
+ 	ret float 0.000000e+00
+ }
+ 
+ float %g(float* %v) {
+ entry:
+         %tmp = load float* %v
+ 	ret float %tmp
+ }






More information about the llvm-commits mailing list