mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-09 10:05:41 +00:00
70a83b490e
Support for the intrinsics that read from and write to global named registers is added for r1, r2 and r13 (depending on the subtarget). git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@208509 91177308-0d34-0410-b5e6-96231b3b80d8
16 lines
535 B
LLVM
16 lines
535 B
LLVM
; RUN: not llc < %s -mtriple=powerpc-apple-darwin 2>&1 | FileCheck %s
|
|
; RUN: not llc < %s -mtriple=powerpc-unknown-linux-gnu 2>&1 | FileCheck %s
|
|
; RUN: not llc < %s -mtriple=powerpc64-unknown-linux-gnu 2>&1 | FileCheck %s
|
|
|
|
define i32 @get_reg() nounwind {
|
|
entry:
|
|
; FIXME: Include an allocatable-specific error message
|
|
; CHECK: Invalid register name global variable
|
|
%reg = call i32 @llvm.read_register.i32(metadata !0)
|
|
ret i32 %reg
|
|
}
|
|
|
|
declare i32 @llvm.read_register.i32(metadata) nounwind
|
|
|
|
!0 = metadata !{metadata !"r0\00"}
|