1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 11:13:28 +01:00
llvm-mirror/test/CodeGen/XCore/linkage.ll
Krzysztof Parzyszek 43f8619548 Use .set instead of = when printing assignment in assembly output
On Hexagon "x = y" is a syntax used in most instructions, and is not
treated as a directive.

Differential Revision: https://reviews.llvm.org/D44256

llvm-svn: 328635
2018-03-27 16:44:41 +00:00

50 lines
1.0 KiB
LLVM

; RUN: llc < %s -march=xcore | FileCheck %s
; CHECK: .weak fd
define weak void @fd() {
call void @fr(i32* @gd, i32* @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(i32*, i32*)
; CHECK: .weak gr
@gr = extern_weak global i32