PPC GCC Inline assembly help

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Hello,

I'm using GCC inline assembly on PowerPc.

Below codes is works :

int reg_gpr()
{
int Rx = 0;
	__asm__ (
		"mr 31,%0\n"
		:
		:"i"(Rx)
		);
}

But not with this one : 

reg_gpr(0);
int reg_gpr(int Rx)
{
	__asm__ (
		"mr 31,%0\n"
		:
		:"i"(Rx)
		);
}

It will send error messages "impossible constraints in asm"
Is there any other method to modify Rx value from outside functions? 

thanks,

-- 
View this message in context: http://www.nabble.com/PPC-GCC-Inline-assembly-help-tp23403005p23403005.html
Sent from the gcc - Help mailing list archive at Nabble.com.


[Index of Archives]     [Linux C Programming]     [Linux Kernel]     [eCos]     [Fedora Development]     [Fedora Announce]     [Autoconf]     [The DWARVES Debugging Tools]     [Yosemite Campsites]     [Yosemite News]     [Linux GCC]

  Powered by Linux