Revert r158679 - use case is unclear (and it increases the memory footprint).
[oota-llvm.git] / utils / TableGen / SubtargetEmitter.cpp
index 19b0550b994ffc7efaaeec26820e521fa61e796e..59464d294056dcbc1fd3a87d21cd1735fc6a8d86 100644 (file)
@@ -379,8 +379,8 @@ void SubtargetEmitter::EmitStageAndOperandCycleData(raw_ostream &OS,
        << "namespace " << Name << "FU {\n";
 
     for (unsigned j = 0, FUN = FUs.size(); j < FUN; ++j)
-      OS << "  const uint64_t " << FUs[j]->getName()
-         << " = 1ULL << " << j << ";\n";
+      OS << "  const unsigned " << FUs[j]->getName()
+         << " = 1 << " << j << ";\n";
 
     OS << "}\n";