1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-02-01 05:01:59 +01:00

How about ULL...

llvm-svn: 105726
This commit is contained in:
Eric Christopher 2010-06-09 16:16:48 +00:00
parent 2c6b68924d
commit eba31022a2

View File

@ -301,7 +301,7 @@ void InstrInfoEmitter::emitRecord(const CodeGenInstruction &Inst, unsigned Num,
}
OS << ", 0x";
OS.write_hex(Value);
OS << "LLU, ";
OS << "ULL, ";
// Emit the implicit uses and defs lists...
std::vector<Record*> UseList = Inst.TheDef->getValueAsListOfDefs("Uses");