Mercurial > hg > Members > tobaru > cbc > CbC_llvm
view test/CodeGen/Mips/private.ll @ 33:e4204d083e25
LLVM 3.5
author | Kaito Tokumori <e105711@ie.u-ryukyu.ac.jp> |
---|---|
date | Thu, 12 Dec 2013 14:32:10 +0900 |
parents | 95c75e76d11b |
children | afa8332a0e37 |
line wrap: on
line source
; Test to make sure that the 'private' is used correctly. ; ; RUN: llc -march=mips < %s | FileCheck %s define private void @foo() { ; CHECK-LABEL: foo: ret void } @baz = private global i32 4 define i32 @bar() { ; CHECK-LABEL: bar: ; CHECK: call16($foo) ; CHECK: lw $[[R0:[0-9]+]], %got($baz)($ ; CHECK: lw ${{[0-9]+}}, %lo($baz)($[[R0]]) call void @foo() %1 = load i32* @baz, align 4 ret i32 %1 }