Home | History | Annotate | Download | only in Linker
      1 ; RUN: llvm-link %s -S -o - | FileCheck %s
      2 target datalayout = "e-m:o-i64:64-f80:128-n8:16:32:64-S128"
      3 target triple = "x86_64-apple-macosx10.9"
      4 
      5 ; CHECK-DAG: @A = internal constant i8 1
      6 ; CHECK-DAG: @B = alias i8, i8* @A
      7 ; CHECK-DAG: @C = global [2 x i8*] [i8* @A, i8* @B]
      8 
      9 @A = internal constant i8 1
     10 @B = alias i8, i8* @A
     11 @C = global [2 x i8*] [i8* @A, i8* @B]
     12 
     13 
     14