2019-11-08 21:07:54 +01:00
|
|
|
; RUN: llvm-mc -triple=amdgcn-amd-amdhsa -mcpu=gfx900 -filetype=asm %s | FileCheck %s
|
|
|
|
|
2020-03-16 22:12:09 +01:00
|
|
|
; 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.
|
2019-11-08 21:07:54 +01:00
|
|
|
|
|
|
|
.text
|
|
|
|
f:
|
|
|
|
.cfi_startproc
|
2020-03-16 22:12:09 +01:00
|
|
|
; 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
|
2019-11-08 21:07:54 +01:00
|
|
|
.cfi_endproc
|