mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 11:13:28 +01:00
43f8619548
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
16 lines
369 B
LLVM
16 lines
369 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: .set TestC, TestD
|
|
; CHECK-DAG: .set TestB, TestC
|
|
; CHECK-DAG: .set TestA, TestC
|