[llvm-commits] CVS: llvm/test/Regression/Transforms/ArgumentPromotion/aggregate-promote.ll
Reid Spencer
reid at x10sys.com
Thu Nov 23 07:15:47 PST 2006
Changes in directory llvm/test/Regression/Transforms/ArgumentPromotion:
aggregate-promote.ll updated: 1.1 -> 1.2
---
Log message:
Promote GEP ubyte indices to uint. Backwards compatibility for 1.2 and
older features will be dropped soon and these test cases must not rely
on the upgrade capability.
---
Diffs of the changes: (+2 -2)
aggregate-promote.ll | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
Index: llvm/test/Regression/Transforms/ArgumentPromotion/aggregate-promote.ll
diff -u llvm/test/Regression/Transforms/ArgumentPromotion/aggregate-promote.ll:1.1 llvm/test/Regression/Transforms/ArgumentPromotion/aggregate-promote.ll:1.2
--- llvm/test/Regression/Transforms/ArgumentPromotion/aggregate-promote.ll:1.1 Sun Mar 7 18:58:19 2004
+++ llvm/test/Regression/Transforms/ArgumentPromotion/aggregate-promote.ll Thu Nov 23 09:14:52 2006
@@ -7,8 +7,8 @@
implementation
internal int %test(%QuadTy* %P) {
- %A = getelementptr %QuadTy* %P, long 0, ubyte 3
- %B = getelementptr %QuadTy* %P, long 0, ubyte 2
+ %A = getelementptr %QuadTy* %P, long 0, uint 3
+ %B = getelementptr %QuadTy* %P, long 0, uint 2
%a = load int* %A
%b = load int* %B
%V = add int %a, %b
More information about the llvm-commits
mailing list