[ARM] Better OR's for MVE compares
[llvm-core.git] / test / MC / COFF / offset.s
blobbd5e9309f0a633b622b62e5558789961835e5e26
1 // RUN: llvm-mc -filetype=obj -triple i686-pc-win32 %s -o - | llvm-readobj --symbols -r | FileCheck %s
3 .data
4 .globl test1_foo
5 test1_foo:
6 .long 42
8 .globl test1_zed
9 test1_zed = test1_foo + 1
11 // CHECK: Symbol {
12 // CHECK: Name: test1_zed
13 // CHECK-NEXT: Value: 1
14 // CHECK-NEXT: Section: .data
15 // CHECK-NEXT: BaseType: Null
16 // CHECK-NEXT: ComplexType: Null
17 // CHECK-NEXT: StorageClass: External
18 // CHECK-NEXT: AuxSymbolCount: 0
19 // CHECK-NEXT: }