[llvm-commits] CVS: llvm/test/Feature/calltest.ll instructions.ll
Reid Spencer
reid at x10sys.com
Sun Jan 7 11:34:05 PST 2007
Changes in directory llvm/test/Feature:
calltest.ll updated: 1.6 -> 1.7
instructions.ll updated: 1.4 -> 1.5
---
Log message:
Redefinition of functions is no longer permitted.
---
Diffs of the changes: (+3 -4)
calltest.ll | 3 +--
instructions.ll | 4 ++--
2 files changed, 3 insertions(+), 4 deletions(-)
Index: llvm/test/Feature/calltest.ll
diff -u llvm/test/Feature/calltest.ll:1.6 llvm/test/Feature/calltest.ll:1.7
--- llvm/test/Feature/calltest.ll:1.6 Fri Dec 1 22:23:07 2006
+++ llvm/test/Feature/calltest.ll Sun Jan 7 13:33:49 2007
@@ -4,8 +4,7 @@
%FunTy = type int(int)
-declare int "test"(...) ; Test differences of prototype
-declare int "test"() ; Differ only by vararg
+declare int "test"(int) ; Test forward declaration merging
implementation
Index: llvm/test/Feature/instructions.ll
diff -u llvm/test/Feature/instructions.ll:1.4 llvm/test/Feature/instructions.ll:1.5
--- llvm/test/Feature/instructions.ll:1.4 Fri Dec 1 22:23:07 2006
+++ llvm/test/Feature/instructions.ll Sun Jan 7 13:33:49 2007
@@ -12,13 +12,13 @@
ret <4 x uint> %R
}
-<4 x uint> %test_shufflevector(<4 x uint> %V) {
+<4 x uint> %test_shufflevector_u(<4 x uint> %V) {
%R = shufflevector <4 x uint> %V, <4 x uint> %V,
<4 x uint> < uint 1, uint undef, uint 7, uint 2>
ret <4 x uint> %R
}
-<4 x float> %test_shufflevector(<4 x float> %V) {
+<4 x float> %test_shufflevector_f(<4 x float> %V) {
%R = shufflevector <4 x float> %V, <4 x float> undef,
<4 x uint> < uint 1, uint undef, uint 7, uint 2>
ret <4 x float> %R
More information about the llvm-commits
mailing list