summaryrefslogtreecommitdiff
path: root/test/CodeGen
diff options
context:
space:
mode:
authorAnton Korobeynikov <asl@math.spbu.ru>2007-04-29 10:34:42 +0000
committerAnton Korobeynikov <asl@math.spbu.ru>2007-04-29 10:34:42 +0000
commit21beed669e46fc08753182c3d1e46a936ac322af (patch)
treeea74ceec671c125e82340f10ef76a3957753a799 /test/CodeGen
parent32de6330f1e86e9b95a6ad3c58a754fd94e6f727 (diff)
downloadllvm-21beed669e46fc08753182c3d1e46a936ac322af.tar.gz
llvm-21beed669e46fc08753182c3d1e46a936ac322af.tar.bz2
llvm-21beed669e46fc08753182c3d1e46a936ac322af.tar.xz
Updated aliases test
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@36558 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen')
-rw-r--r--test/CodeGen/X86/aliases.ll6
1 files changed, 4 insertions, 2 deletions
diff --git a/test/CodeGen/X86/aliases.ll b/test/CodeGen/X86/aliases.ll
index 33d30db89f..9bd6140848 100644
--- a/test/CodeGen/X86/aliases.ll
+++ b/test/CodeGen/X86/aliases.ll
@@ -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 @@ declare i32 @foo_f()
@bar_i = alias internal i32* @bar
+@A = alias bitcast (i32* @bar to i64*)
+
define i32 @test() {
entry:
%tmp = load i32* @foo1