summaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorEric Christopher <echristo@apple.com>2010-06-09 16:16:48 +0000
committerEric Christopher <echristo@apple.com>2010-06-09 16:16:48 +0000
commit622dffde8691a33180e2368184b9f4efa6a86fbc (patch)
tree2028695c890e0b89dfa0d03d617212e9db791da2 /utils
parent42c7d23c6d56e0743169d94025264eaf17eb799d (diff)
downloadllvm-622dffde8691a33180e2368184b9f4efa6a86fbc.tar.gz
llvm-622dffde8691a33180e2368184b9f4efa6a86fbc.tar.bz2
llvm-622dffde8691a33180e2368184b9f4efa6a86fbc.tar.xz
How about ULL...
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@105726 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils')
-rw-r--r--utils/TableGen/InstrInfoEmitter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/TableGen/InstrInfoEmitter.cpp b/utils/TableGen/InstrInfoEmitter.cpp
index 0dfc95e905..e66192a221 100644
--- a/utils/TableGen/InstrInfoEmitter.cpp
+++ b/utils/TableGen/InstrInfoEmitter.cpp
@@ -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");