blob: 698d76e56580c21c7e455284c374a940e14e23fc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
; RUN: llc -mtriple arm-unknown-linux-gnueabi \
; RUN: -arm-enable-ehabi -arm-enable-ehabi-descriptors \
; RUN: -filetype=obj -o - %s \
; RUN: | llvm-objdump -s - \
; RUN: | FileCheck %s
define void @test() nounwind {
entry:
ret void
}
; CHECK: section .text
; CHECK: section .ARM.exidx
; CHECK-NEXT: 0000 00000000 01000000
|