Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / llvm / test / CodeGen / XCore / private.ll
blob2880c09cb907777aa7db1d2f04fcfa1e5ee02eee
1 ; Test to make sure that the 'private' is used correctly.
3 ; RUN: llc < %s -march=xcore | FileCheck %s
5 define private void @foo() {
6 ; CHECK: .Lfoo:
7         ret void
10 @baz = private global i32 4
12 define i32 @bar() {
13 ; CHECK-LABEL: bar:
14 ; CHECK: bl .Lfoo
15 ; CHECK: ldw r0, dp[.Lbaz]
16         call void @foo()
17         %1 = load i32, ptr @baz, align 4
18         ret i32 %1
21 ; CHECK: .Lbaz: