|
@@ -15,6 +15,7 @@
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
#include <iostream>
|
|
|
+#include <iomanip>
|
|
|
#include <vector>
|
|
|
#include <cassert>
|
|
|
#include <cstdlib>
|
|
@@ -400,7 +401,7 @@ int main() {
|
|
|
// LHS, and 13 bits of RHS = 32 bits.
|
|
|
unsigned Val = (CostSat << 30) | (OpNum << 26) | (LHS << 13) | RHS;
|
|
|
|
|
|
- std::cout << " " << Val << "U,\t// ";
|
|
|
+ std::cout << " " << std::setw(10) << Val << "U, // ";
|
|
|
PrintMask(i, std::cout);
|
|
|
std::cout << ": Cost " << ShufTab[i].Cost;
|
|
|
std::cout << " " << (ShufTab[i].Op ? ShufTab[i].Op->getName() : "copy");
|