diff options
Diffstat (limited to 'test/CodeGen/X86/aliases.ll')
| -rw-r--r-- | test/CodeGen/X86/aliases.ll | 26 |
1 files changed, 19 insertions, 7 deletions
diff --git a/test/CodeGen/X86/aliases.ll b/test/CodeGen/X86/aliases.ll index f92027998a408..d0a262d390da0 100644 --- a/test/CodeGen/X86/aliases.ll +++ b/test/CodeGen/X86/aliases.ll @@ -1,26 +1,38 @@ -; RUN: llc < %s -mtriple=i686-pc-linux-gnu -asm-verbose=false -o %t -; RUN: grep globl %t | count 6 -; RUN: grep weak %t | count 1 -; RUN: grep hidden %t | count 1 -; RUN: grep protected %t | count 1 +; RUN: llc < %s -mtriple=i686-pc-linux-gnu -asm-verbose=false | FileCheck %s -@bar = external global i32 +@bar = global i32 42 + +; CHECK-DAG: .globl foo1 @foo1 = alias i32* @bar + +; CHECK-DAG: .globl foo2 @foo2 = alias i32* @bar %FunTy = type i32() -declare i32 @foo_f() +define i32 @foo_f() { + ret i32 0 +} +; CHECK-DAG: .weak bar_f @bar_f = alias weak %FunTy* @foo_f +@bar_l = alias linkonce_odr i32* @bar +; CHECK-DAG: .weak bar_l + @bar_i = alias internal i32* @bar +; CHECK-DAG: .globl A @A = alias bitcast (i32* @bar to i64*) +; CHECK-DAG: .globl bar_h +; CHECK-DAG: .hidden bar_h @bar_h = hidden alias i32* @bar +; CHECK-DAG: .globl bar_p +; CHECK-DAG: .protected bar_p @bar_p = protected alias i32* @bar +; CHECK-DAG: .globl test define i32 @test() { entry: %tmp = load i32* @foo1 |
