[llvm-commits] CVS: llvm/test/CodeGen/X86/aliases.ll
Anton Korobeynikov
asl at math.spbu.ru
Sun Apr 29 03:35:04 PDT 2007
Changes in directory llvm/test/CodeGen/X86:
aliases.ll updated: 1.1 -> 1.2
---
Log message:
Updated aliases test
---
Diffs of the changes: (+4 -2)
aliases.ll | 6 ++++--
1 files changed, 4 insertions(+), 2 deletions(-)
Index: llvm/test/CodeGen/X86/aliases.ll
diff -u llvm/test/CodeGen/X86/aliases.ll:1.1 llvm/test/CodeGen/X86/aliases.ll:1.2
--- llvm/test/CodeGen/X86/aliases.ll:1.1 Wed Apr 25 09:27:10 2007
+++ llvm/test/CodeGen/X86/aliases.ll Sun Apr 29 05:34:42 2007
@@ -1,7 +1,7 @@
; RUN: llvm-as < %s | \
; RUN: llc -mtriple=i686-pc-linux-gnu -o %t -f
-; RUN: grep -c set %t | grep 4
-; RUN: grep -c globl %t | grep 3
+; RUN: grep -c set %t | grep 5
+; RUN: grep -c globl %t | grep 4
; RUN: grep -c weak %t | grep 1
@bar = external global i32
@@ -15,6 +15,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