aboutsummaryrefslogtreecommitdiffstats
path: root/test/MC/COFF/lset0.s
blob: 7321b0117b17fc11c65e1606889592f89a74f606 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// RUN: llvm-mc -filetype=obj -triple i686-pc-win32 %s -o - | llvm-nm - | FileCheck %s

not_global = 123
global = 456
.globl global
.Llocal = 789

// CHECK-NOT: not_global
// CHECK-NOT: Llocal
// CHECK: global
// CHECK-NOT: not_global
// CHECK-NOT: Llocal