From 79402ee6f96ff3be95b445286d91d0d87b5a3cc9 Mon Sep 17 00:00:00 2001 From: Craig Topper Date: Sat, 5 Dec 2015 07:13:35 +0000 Subject: Replace uint16_t with the MCPhysReg typedef in many places. A lot of physical register arrays already use this typedef. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@254843 91177308-0d34-0410-b5e6-96231b3b80d8 --- utils/TableGen/InstrInfoEmitter.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'utils/TableGen/InstrInfoEmitter.cpp') diff --git a/utils/TableGen/InstrInfoEmitter.cpp b/utils/TableGen/InstrInfoEmitter.cpp index a4302d09078..a6583399fa2 100644 --- a/utils/TableGen/InstrInfoEmitter.cpp +++ b/utils/TableGen/InstrInfoEmitter.cpp @@ -74,7 +74,7 @@ private: static void PrintDefList(const std::vector &Uses, unsigned Num, raw_ostream &OS) { - OS << "static const uint16_t ImplicitList" << Num << "[] = { "; + OS << "static const MCPhysReg ImplicitList" << Num << "[] = { "; for (unsigned i = 0, e = Uses.size(); i != e; ++i) OS << getQualifiedName(Uses[i]) << ", "; OS << "0 };\n"; -- cgit v1.2.3