1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 03:33:20 +01:00

Implement inline asm modifier P.

llvm-svn: 35640
This commit is contained in:
Evan Cheng 2007-04-04 00:13:29 +00:00
parent d5956e4409
commit 44488cb676

View File

@ -688,6 +688,7 @@ bool ARMAsmPrinter::PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
switch (ExtraCode[0]) {
default: return true; // Unknown modifier.
case 'c': // Don't print "$" before a global var name or constant.
case 'P': // Print a VFP double precision register.
printOperand(MI, OpNo);
return false;
case 'Q':