forked from OSchip/llvm-project
18 lines
421 B
ArmAsm
18 lines
421 B
ArmAsm
// RUN: llvm-mc %s -triple=armv7-unknown-linux-gnueabi -filetype=obj -o %t.o
|
|
// RUN: ld.lld -r %t.o -o %t
|
|
// REQUIRES: arm
|
|
// RUN: llvm-readobj -s %t | FileCheck %s
|
|
// Check that when doing a relocatable link we don't add a terminating entry
|
|
// to the .ARM.exidx section
|
|
.syntax unified
|
|
.text
|
|
_start:
|
|
.fnstart
|
|
.cantunwind
|
|
bx lr
|
|
.fnend
|
|
|
|
// Expect 1 table entry of size 8
|
|
// CHECK: Name: .ARM.exidx
|
|
// CHECK: Size: 8
|