mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 19:23:23 +01:00
4ce7e8e6df
This fixes pr19147. There are a few more related issues to fix, but the testcase in the bug now passes. llvm-svn: 207763
20 lines
477 B
ArmAsm
20 lines
477 B
ArmAsm
// RUN: llvm-mc -filetype=obj -triple i686-pc-win32 %s -o - | llvm-readobj -t -r | FileCheck %s
|
|
|
|
.data
|
|
.globl test1_foo
|
|
test1_foo:
|
|
.long 42
|
|
|
|
.globl test1_zed
|
|
test1_zed = test1_foo + 1
|
|
|
|
// CHECK: Symbol {
|
|
// CHECK: Name: test1_zed
|
|
// CHECK-NEXT: Value: 1
|
|
// CHECK-NEXT: Section: .data
|
|
// CHECK-NEXT: BaseType: Null
|
|
// CHECK-NEXT: ComplexType: Null
|
|
// CHECK-NEXT: StorageClass: External
|
|
// CHECK-NEXT: AuxSymbolCount: 0
|
|
// CHECK-NEXT: }
|