mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-19 01:34:32 +00:00
15 lines
310 B
Plaintext
15 lines
310 B
Plaintext
|
; RUN: llvm-as < %s | llc -march=c | grep builtin_return_address
|
||
|
|
||
|
declare sbyte* %llvm.returnaddress(uint)
|
||
|
declare sbyte* %llvm.frameaddress(uint)
|
||
|
|
||
|
sbyte *%test1() {
|
||
|
%X = call sbyte* %llvm.returnaddress(uint 0)
|
||
|
ret sbyte* %X
|
||
|
}
|
||
|
|
||
|
sbyte *%test2() {
|
||
|
%X = call sbyte* %llvm.frameaddress(uint 0)
|
||
|
ret sbyte* %X
|
||
|
}
|