64ac736ec5
Former-commit-id: f3cc9b82f3e5bd8f0fd3ebc098f789556b44e9cd
16 lines
357 B
LLVM
16 lines
357 B
LLVM
; RUN: llc -verify-machineinstrs -mtriple=powerpc64le-unknown-linux-gnu < %s | FileCheck %s
|
|
|
|
@TestA = alias void (), void ()* @TestC
|
|
@TestB = alias void (), void ()* @TestC
|
|
@TestC = alias void (), void ()* @TestD
|
|
|
|
define void @TestD() {
|
|
entry:
|
|
ret void
|
|
}
|
|
|
|
; CHECK-LABEL: TestD:
|
|
; CHECK: TestC = TestD
|
|
; CHECK-DAG: TestB = TestC
|
|
; CHECK-DAG: TestA = TestC
|