mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-20 09:37:50 +00:00
23c71305cf
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@17552 91177308-0d34-0410-b5e6-96231b3b80d8
15 lines
297 B
Plaintext
15 lines
297 B
Plaintext
; RUN: llvm-as < %s | llc -march=x86 | grep '(%esp'
|
|
|
|
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
|
|
}
|