Similar to 806761a762
-mtriple= specifies the full target triple while -march= merely sets the
architecture part of the default target triple (e.g. Windows, macOS),
leaving a target triple which may not make sense.
Therefore, -march= is error-prone and not recommended for tests without a target
triple. The issue has been benign as we recognize xcore-apple-darwin as ELF instead
of rejecting it outrightly.
50 lines
1022 B
LLVM
50 lines
1022 B
LLVM
; RUN: llc < %s -mtriple=xcore | FileCheck %s
|
|
|
|
; CHECK: .weak fd
|
|
define weak void @fd() {
|
|
call void @fr(ptr @gd, ptr @gr)
|
|
ret void
|
|
}
|
|
|
|
; CHECK-NOT: .hidden test_hidden
|
|
declare hidden void @test_hidden_declaration()
|
|
define hidden void @test_hidden() {
|
|
call void @test_hidden_declaration()
|
|
unreachable
|
|
}
|
|
|
|
; CHECK-NOT: .protected
|
|
define protected void @test_protected() {
|
|
unreachable
|
|
}
|
|
|
|
; CHECK: .globl array.globound
|
|
; CHECK: .set array.globound, 2
|
|
; CHECK: .weak array.globound
|
|
; CHECK: .globl array
|
|
; CHECK: .weak array
|
|
@array = weak global [2 x i32] zeroinitializer
|
|
|
|
; CHECK: .globl ac.globound
|
|
; CHECK: .set ac.globound, 2
|
|
; CHECK: .weak ac.globound
|
|
; CHECK: .globl ac
|
|
; CHECK: .weak ac
|
|
@ac = common global [2 x i32] zeroinitializer
|
|
|
|
; CHECK: .globl gd
|
|
; CHECK: .weak gd
|
|
@gd = weak global i32 0
|
|
|
|
; CHECK: .globl gc
|
|
; CHECK: .weak gc
|
|
@gc = common global i32 0
|
|
|
|
; CHECK-NOT: .hidden test_hidden_declaration
|
|
|
|
; CHECK: .weak fr
|
|
declare extern_weak void @fr(ptr, ptr)
|
|
|
|
; CHECK: .weak gr
|
|
@gr = extern_weak global i32
|