abitest.S (LABEL_TEST_FUNC_RETURN): Load testfunc_ptr as 32bit for ILP32 and 64bit for LP64.

* gcc.target/aarch64/aapcs64/abitest.S (LABEL_TEST_FUNC_RETURN): Load
	testfunc_ptr as 32bit for ILP32 and 64bit for LP64.


Co-Authored-By: Naveen H.S <Naveen.Hurugalawadi@caviumnetworks.com>

From-SVN: r219832
This commit is contained in:
Andrew Pinski 2015-01-19 04:46:27 +00:00 committed by Naveen H.S
parent b077669c47
commit 2f3b40a730
2 changed files with 14 additions and 1 deletions

View File

@ -1,3 +1,9 @@
2015-01-15 Andrew Pinski <apinski@cavium.com>
Naveen H.S <Naveen.Hurugalawadi@caviumnetworks.com>
* gcc.target/aarch64/aapcs64/abitest.S (LABEL_TEST_FUNC_RETURN): Load
testfunc_ptr as 32bit for ILP32 and 64bit for LP64.
2015-01-18 Andre Vehreschild <vehre@gmx.de>
PR fortran/60255

View File

@ -2,6 +2,13 @@
.global myfunc
.type dumpregs,%function
.type myfunc,%function
#ifdef __LP64__
#define PTR_REG(n) x##n
#else
#define PTR_REG(n) w##n
#endif
dumpregs:
myfunc:
mov x16, sp
@ -48,7 +55,7 @@ myfunc:
LABEL_TEST_FUNC_RETURN:
adrp x9, testfunc_ptr
add x9, x9, :lo12:testfunc_ptr
ldr x9, [x9, #0]
ldr PTR_REG(9), [x9, #0]
blr x9 // function return value test
adrp x9, saved_return_address
add x9, x9, :lo12:saved_return_address