[llvm-commits] CVS: llvm/test/Regression/CodeGen/Alpha/2005-07-12-TwoMallocCalls.ll

Reid Spencer reid at x10sys.com
Tue Jan 2 13:56:42 PST 2007



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

2005-07-12-TwoMallocCalls.ll updated: 1.5 -> 1.6
---
Log message:

This test case previously passed the assembler without error even though
it used an undefined type name as a parameter argument. This bug in the
assembler has been fixed and it is now necessary to define the type. 


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

 2005-07-12-TwoMallocCalls.ll |    2 ++
 1 files changed, 2 insertions(+)


Index: llvm/test/Regression/CodeGen/Alpha/2005-07-12-TwoMallocCalls.ll
diff -u llvm/test/Regression/CodeGen/Alpha/2005-07-12-TwoMallocCalls.ll:1.5 llvm/test/Regression/CodeGen/Alpha/2005-07-12-TwoMallocCalls.ll:1.6
--- llvm/test/Regression/CodeGen/Alpha/2005-07-12-TwoMallocCalls.ll:1.5	Mon Jan  1 22:30:40 2007
+++ llvm/test/Regression/CodeGen/Alpha/2005-07-12-TwoMallocCalls.ll	Tue Jan  2 15:56:26 2007
@@ -1,6 +1,8 @@
 ; There should be exactly two calls here (memset and malloc), no more.
 ; RUN: llvm-upgrade < %s | llvm-as | llc -march=alpha | grep jsr | wc -l | grep 2
 
+%typedef.bc_struct = type opaque
+
 implementation   ; Functions:
 
 declare void %llvm.memset.i64(sbyte*, ubyte, ulong, uint)






More information about the llvm-commits mailing list