[llvm-commits] CVS: llvm/test/Regression/CodeGen/X86/2006-08-07-CycleInDAG.ll
Reid Spencer
reid at x10sys.com
Wed Jan 3 09:04:03 PST 2007
Changes in directory llvm/test/Regression/CodeGen/X86:
2006-08-07-CycleInDAG.ll updated: 1.3 -> 1.4
---
Log message:
It is no longer permissible to have undefined types in function parameters.
Just fix it by defining the type as opaque.
---
Diffs of the changes: (+4 -0)
2006-08-07-CycleInDAG.ll | 4 ++++
1 files changed, 4 insertions(+)
Index: llvm/test/Regression/CodeGen/X86/2006-08-07-CycleInDAG.ll
diff -u llvm/test/Regression/CodeGen/X86/2006-08-07-CycleInDAG.ll:1.3 llvm/test/Regression/CodeGen/X86/2006-08-07-CycleInDAG.ll:1.4
--- llvm/test/Regression/CodeGen/X86/2006-08-07-CycleInDAG.ll:1.3 Sun Dec 31 00:01:59 2006
+++ llvm/test/Regression/CodeGen/X86/2006-08-07-CycleInDAG.ll Wed Jan 3 11:03:48 2007
@@ -1,5 +1,9 @@
; RUN: llvm-upgrade < %s | llvm-as | llc -march=x86 -mattr=+sse2
+%struct.foo = type opaque
+
+implementation
+
fastcc int %test(%struct.foo* %v, %struct.foo* %vi) {
br bool false, label %ilog2.exit, label %cond_true.i
More information about the llvm-commits
mailing list