mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-25 20:23:11 +01:00
9435082839
Summary: Explanation is in a comment in the diff, but essentially printing a physical register name here is ambiguous. Until we can implement printing a DWARF register name here just use the encoding directly. Tags: #llvm Differential Revision: https://reviews.llvm.org/D76253
17 lines
539 B
ArmAsm
17 lines
539 B
ArmAsm
; RUN: llvm-mc -triple=amdgcn-amd-amdhsa -mcpu=gfx900 -filetype=asm %s | FileCheck %s
|
|
|
|
; FIXME: Currently we can't print register names in CFI directives
|
|
; without extending MC to support DWARF register names that are distinct
|
|
; from physical register names.
|
|
|
|
.text
|
|
f:
|
|
.cfi_startproc
|
|
; CHECK: .cfi_undefined 2560
|
|
.cfi_undefined 2560
|
|
; FIXME: Until we implement a distinct set of DWARF register names we
|
|
; will continue to parse physical registers and pick an arbitrary encoding.
|
|
; CHECK: .cfi_undefined 2560
|
|
.cfi_undefined v0
|
|
.cfi_endproc
|