You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
58 lines
1.1 KiB
58 lines
1.1 KiB
// RUN: llvm-mc -filetype=obj -triple i686-pc-mingw32 %s | llvm-readobj -s -sr -sd | FileCheck %s
|
|
|
|
.section baz, "xr"
|
|
.def X
|
|
.scl 2;
|
|
.type 32;
|
|
.endef
|
|
.globl X
|
|
X:
|
|
mov Y-X+42, %eax
|
|
retl
|
|
|
|
.def Y
|
|
.scl 2;
|
|
.type 32;
|
|
.endef
|
|
.globl Y
|
|
Y:
|
|
retl
|
|
|
|
.def _foobar;
|
|
.scl 2;
|
|
.type 32;
|
|
.endef
|
|
.text
|
|
.long 0
|
|
.globl _foobar
|
|
.align 16, 0x90
|
|
_foobar: # @foobar
|
|
# BB#0:
|
|
ret
|
|
|
|
.data
|
|
.globl _rust_crate # @rust_crate
|
|
.align 4
|
|
_rust_crate:
|
|
.long 0
|
|
.long _foobar
|
|
.long _foobar-_rust_crate
|
|
.long _foobar-_rust_crate
|
|
|
|
// CHECK: Name: .data
|
|
// CHECK: Relocations [
|
|
// CHECK-NEXT: 0x4 IMAGE_REL_I386_DIR32 _foobar
|
|
// CHECK-NEXT: 0x8 IMAGE_REL_I386_REL32 .text
|
|
// CHECK-NEXT: 0xC IMAGE_REL_I386_REL32 .text
|
|
// CHECK-NEXT: ]
|
|
// CHECK: SectionData (
|
|
// CHECK-NEXT: 0000: 00000000 00000000 1C000000 20000000
|
|
// CHECK-NEXT: )
|
|
|
|
// CHECK: Name: baz
|
|
// CHECK: Relocations [
|
|
// CHECK-NEXT: ]
|
|
// CHECK: SectionData (
|
|
// CHECK-NEXT: 0000: A1300000 00C3C3
|
|
// CHECK-NEXT: )
|