Mercurial > hg > CbC > CbC_llvm
view test/CodeGen/Mips/private.ll @ 77:54457678186b LLVM3.6
LLVM 3.6
author | Kaito Tokumori <e105711@ie.u-ryukyu.ac.jp> |
---|---|
date | Mon, 08 Sep 2014 22:06:00 +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 }