mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-16 11:30:51 +00:00
68fe665b9a
physical register $r1 to $r0. GNU disassembler recognizes an "or" instruction as a "move", and this change makes the disassembled code easier to read. Original patch by Reed Kotler. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@170655 91177308-0d34-0410-b5e6-96231b3b80d8
13 lines
262 B
LLVM
13 lines
262 B
LLVM
; RUN: llc -march=mipsel < %s | FileCheck %s
|
|
|
|
declare i8* @llvm.frameaddress(i32) nounwind readnone
|
|
|
|
define i8* @f() nounwind {
|
|
entry:
|
|
%0 = call i8* @llvm.frameaddress(i32 0)
|
|
ret i8* %0
|
|
|
|
; CHECK: addu $fp, $sp, $zero
|
|
; CHECK: or $2, $fp, $zero
|
|
}
|