forked from OSchip/llvm-project
13 lines
399 B
LLVM
13 lines
399 B
LLVM
; RUN: llvm-link %s -S -o - | FileCheck %s
|
|
target datalayout = "e-m:o-i64:64-f80:128-n8:16:32:64-S128"
|
|
target triple = "x86_64-apple-macosx10.9"
|
|
|
|
; CHECK-DAG: @gv0 = constant i64* @alias
|
|
; CHECK-DAG: @gv1 = constant i64 ptrtoint (i64* @gv1 to i64)
|
|
; CHECK-DAG: @alias = alias i64, i64* @gv1
|
|
|
|
@gv0 = constant i64* @alias
|
|
@gv1 = constant i64 ptrtoint (i64* @gv1 to i64)
|
|
|
|
@alias = alias i64, i64* @gv1
|