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.
26 lines
456 B
26 lines
456 B
; RUN: llc < %s -mtriple=arm-unknown-linux-gnueabi | FileCheck %s
|
|
|
|
; CHECK: .text
|
|
; CHECK: .globl test1
|
|
; CHECK: .type test1,%function
|
|
define void @test1() {
|
|
entry:
|
|
ret void
|
|
}
|
|
|
|
; CHECK: .section .test2,"ax",%progbits
|
|
; CHECK: .globl test2
|
|
; CHECK: .type test2,%function
|
|
define void @test2() section ".test2" {
|
|
entry:
|
|
ret void
|
|
}
|
|
|
|
; CHECK: .text
|
|
; CHECK: .weak test3
|
|
; CHECK: .type test3,%function
|
|
define linkonce_odr void @test3() {
|
|
entry:
|
|
ret void
|
|
}
|