mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 19:23:23 +01:00
04d669c011
llvm-svn: 197828
17 lines
364 B
ArmAsm
17 lines
364 B
ArmAsm
// RUN: llvm-mc -filetype=obj -triple i686-pc-win32 %s | llvm-readobj -s -sr | FileCheck %s
|
|
|
|
// check that we produce the correct relocation for .secidx
|
|
|
|
Lfoo:
|
|
.secidx Lfoo
|
|
.secidx Lbar
|
|
|
|
.section spam
|
|
Lbar:
|
|
ret
|
|
|
|
// CHECK: Relocations [
|
|
// CHECK-NEXT: 0x0 IMAGE_REL_I386_SECTION .text
|
|
// CHECK-NEXT: 0x4 IMAGE_REL_I386_SECTION spam
|
|
// CHECK-NEXT: ]
|