mirror of
				https://github.com/c64scene-ar/llvm-6502.git
				synced 2025-11-04 05:17:07 +00:00 
			
		
		
		
	Fix test/CFrontend/2007-01-24-InlineAsmCModifier.c on X86. The %c modifier
says that no $ prefix should be emitted on X86. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@33495 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
		@@ -219,7 +219,8 @@ void X86ATTAsmPrinter::printOperand(const MachineInstr *MI, unsigned OpNo,
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  case MachineOperand::MO_Immediate:
 | 
			
		||||
    if (!Modifier || strcmp(Modifier, "debug") != 0)
 | 
			
		||||
    if (!Modifier ||
 | 
			
		||||
        (strcmp(Modifier, "debug") && strcmp(Modifier, "mem")))
 | 
			
		||||
      O << '$';
 | 
			
		||||
    O << MO.getImmedValue();
 | 
			
		||||
    return;
 | 
			
		||||
@@ -491,7 +492,7 @@ bool X86ATTAsmPrinter::PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
 | 
			
		||||
    
 | 
			
		||||
    switch (ExtraCode[0]) {
 | 
			
		||||
    default: return true;  // Unknown modifier.
 | 
			
		||||
    case 'c': // Don't print "$" before a global var name.
 | 
			
		||||
    case 'c': // Don't print "$" before a global var name or constant.
 | 
			
		||||
      printOperand(MI, OpNo, "mem");
 | 
			
		||||
      return false;
 | 
			
		||||
    case 'b': // Print QImode register
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user