From: Anton Korobeynikov Date: Tue, 11 Mar 2008 21:42:20 +0000 (+0000) Subject: Update testcase for recent aliases change X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=0fb2033f913cb0e2f5d3ec54567e6ae18b1ea3bc;p=oota-llvm.git Update testcase for recent aliases change git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@48250 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/CodeGen/X86/aliases.ll b/test/CodeGen/X86/aliases.ll index 4a69eaeda80..3578c96c65c 100644 --- a/test/CodeGen/X86/aliases.ll +++ b/test/CodeGen/X86/aliases.ll @@ -1,8 +1,10 @@ ; RUN: llvm-as < %s | \ ; RUN: llc -mtriple=i686-pc-linux-gnu -o %t -f -; RUN: grep set %t | count 5 -; RUN: grep globl %t | count 4 +; RUN: grep set %t | count 7 +; RUN: grep globl %t | count 6 ; RUN: grep weak %t | count 1 +; RUN: grep hidden %t | count 1 +; RUN: grep protected %t | count 1 @bar = external global i32 @foo1 = alias i32* @bar @@ -17,6 +19,10 @@ declare i32 @foo_f() @A = alias bitcast (i32* @bar to i64*) +@bar_h = hidden alias i32* @bar + +@bar_p = protected alias i32* @bar + define i32 @test() { entry: %tmp = load i32* @foo1