Files
clang-p2996/llvm/test/CodeGen/PowerPC/weak_def_can_be_hidden.ll
Kai Nacke 5403c59c60 [PPC] Opaque pointer migration, part 2.
The LIT test cases were migrated with the script provided by
Nikita Popov. Due to the size of the change it is split into
several parts.

Reviewed By: nemanja, nikic

Differential Revision: https://reviews.llvm.org/D135474
2022-10-11 17:24:06 +00:00

36 lines
749 B
LLVM

; taken from X86 version of the same test
; RUN: llc -verify-machineinstrs -mtriple=powerpc-unknown-linux-gnu -O0 < %s | FileCheck %s
; RUN: llc -verify-machineinstrs -mtriple=powerpc64-unknown-linux-gnu -O0 < %s | FileCheck %s
@v1 = linkonce_odr local_unnamed_addr constant i32 32
; CHECK: .section .rodata,"a"
; CHECK: .weak v1
define i32 @f1() {
%x = load i32 , ptr @v1
ret i32 %x
}
@v2 = linkonce_odr constant i32 32
; CHECK: .weak v2
define ptr @f2() {
ret ptr @v2
}
@v3 = linkonce_odr unnamed_addr constant i32 32
; CHECK: .section .rodata.cst4,"aM",
; CHECK: .weak v3
define ptr @f3() {
ret ptr @v3
}
@v4 = linkonce_odr unnamed_addr global i32 32
; CHECK: .weak v4
define i32 @f4() {
%x = load i32 , ptr @v4
ret i32 %x
}