[llvm-commits] CVS: llvm/test/Feature/varargs_new.ll

Reid Spencer reid at x10sys.com
Sat Jun 18 13:27:44 PDT 2005



Changes in directory llvm/test/Feature:

varargs_new.ll updated: 1.1 -> 1.2
---
Log message:

Fix this test case to actually test the new va_arg instruction not the
old vaarg instruction.


---
Diffs of the changes:  (+1 -1)

 varargs_new.ll |    2 +-
 1 files changed, 1 insertion(+), 1 deletion(-)


Index: llvm/test/Feature/varargs_new.ll
diff -u llvm/test/Feature/varargs_new.ll:1.1 llvm/test/Feature/varargs_new.ll:1.2
--- llvm/test/Feature/varargs_new.ll:1.1	Sat Jun 18 13:30:37 2005
+++ llvm/test/Feature/varargs_new.ll	Sat Jun 18 15:27:32 2005
@@ -19,7 +19,7 @@
         call void %llvm.va_start(sbyte** %ap)
 
         ; Read a single integer argument
-        %tmp = vaarg sbyte** %ap, int           ; <int> [#uses=1]
+        %tmp = va_arg sbyte** %ap, int           ; <int> [#uses=1]
 
         ; Demonstrate usage of llvm.va_copy and llvm_va_end
         %apv = load sbyte** %ap         ; <sbyte*> [#uses=1]






More information about the llvm-commits mailing list