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

Anton Korobeynikov asl at math.spbu.ru
Sat Apr 28 06:45:52 PDT 2007



Changes in directory llvm/test/Feature:

aliases.ll updated: 1.2 -> 1.3
---
Log message:

Implement review feedback. Aliasees can be either GlobalValue's or 
bitcasts of them.


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

 aliases.ll |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)


Index: llvm/test/Feature/aliases.ll
diff -u llvm/test/Feature/aliases.ll:1.2 llvm/test/Feature/aliases.ll:1.3
--- llvm/test/Feature/aliases.ll:1.2	Sat Apr 28 01:02:13 2007
+++ llvm/test/Feature/aliases.ll	Sat Apr 28 08:45:00 2007
@@ -2,8 +2,6 @@
 ; RUN: llvm-as %t1.ll -o - | llvm-dis > %t2.ll
 ; RUN: diff %t1.ll %t2.ll
 
-; XFAIL: *
-
 @bar = external global i32
 @foo1 = alias i32* @bar
 @foo2 = alias i32* @bar
@@ -15,6 +13,8 @@
 
 @bar_i = alias internal i32* @bar
 
+ at A = alias bitcast (i32* @bar to i64*)
+
 define i32 @test() {
 entry:
    %tmp = load i32* @foo1






More information about the llvm-commits mailing list