[llvm-commits] [llvm] r105726 - /llvm/trunk/utils/TableGen/InstrInfoEmitter.cpp
Eric Christopher
echristo at apple.com
Wed Jun 9 09:16:49 PDT 2010
Author: echristo
Date: Wed Jun 9 11:16:48 2010
New Revision: 105726
URL: http://llvm.org/viewvc/llvm-project?rev=105726&view=rev
Log:
How about ULL...
Modified:
llvm/trunk/utils/TableGen/InstrInfoEmitter.cpp
Modified: llvm/trunk/utils/TableGen/InstrInfoEmitter.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/utils/TableGen/InstrInfoEmitter.cpp?rev=105726&r1=105725&r2=105726&view=diff
==============================================================================
--- llvm/trunk/utils/TableGen/InstrInfoEmitter.cpp (original)
+++ llvm/trunk/utils/TableGen/InstrInfoEmitter.cpp Wed Jun 9 11:16:48 2010
@@ -301,7 +301,7 @@
}
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");
More information about the llvm-commits
mailing list