Introduce MCAsmInfo::UsesSetToEquateSymbol to control the preferred syntax for symbol equating. We now favor the more readable and common `symbol = expression` syntax over `.set`. This aligns with pre- https://reviews.llvm.org/D44256 behavior. On Apple platforms, this resolves a clang -S vs -c behavior difference (resolves #104623). For targets whose = support is unconfirmed, UsesSetToEquateSymbol is set to false. This also minimizes test updates. Pull Request: https://github.com/llvm/llvm-project/pull/142289
16 lines
342 B
LLVM
16 lines
342 B
LLVM
; RUN: llc -verify-machineinstrs -mtriple=powerpc64le-unknown-linux-gnu < %s | FileCheck %s
|
|
|
|
@TestA = alias void (), ptr @TestC
|
|
@TestB = alias void (), ptr @TestC
|
|
@TestC = alias void (), ptr @TestD
|
|
|
|
define void @TestD() {
|
|
entry:
|
|
ret void
|
|
}
|
|
|
|
; CHECK-LABEL: TestD:
|
|
; CHECK: TestC = TestD
|
|
; CHECK-DAG: TestB = TestC
|
|
; CHECK-DAG: TestA = TestC
|