Skip to content

Commit

Permalink
[PowerPC] Convert some tests to opaque pointers (NFC)
Browse files Browse the repository at this point in the history
  • Loading branch information
nikic committed Dec 19, 2022
1 parent 9b81548 commit 705029a
Show file tree
Hide file tree
Showing 2 changed files with 144 additions and 193 deletions.
6 changes: 3 additions & 3 deletions llvm/test/CodeGen/PowerPC/aix-xcoff-funcsect.ll
Expand Up @@ -21,7 +21,7 @@
; RUN: llvm-objdump -dr --symbol-description %t64.o | \
; RUN: FileCheck --check-prefix=DIS64 %s

@alias_foo = alias void (...), bitcast (void ()* @foo to void (...)*)
@alias_foo = alias void (...), ptr @foo

define void @foo() {
entry:
Expand All @@ -37,8 +37,8 @@ define void @bar() {
entry:
call void @foo()
call void @static_overalign_foo()
call void bitcast (void (...)* @alias_foo to void ()*)()
call void bitcast (void (...)* @extern_foo to void ()*)()
call void @alias_foo()
call void @extern_foo()
call void @hidden_foo()
ret void
}
Expand Down

0 comments on commit 705029a

Please sign in to comment.