Skip to content
Snippets Groups Projects
Commit 3dcfef63 authored by Chris Lattner's avatar Chris Lattner
Browse files

Really, I can count!

llvm-svn: 27743
parent 311b1a6e
No related branches found
No related tags found
No related merge requests found
...@@ -391,7 +391,7 @@ int main() { ...@@ -391,7 +391,7 @@ int main() {
// Encode this as 2 bits of saturated cost, 4 bits of opcodes, 13 bits of // Encode this as 2 bits of saturated cost, 4 bits of opcodes, 13 bits of
// LHS, and 13 bits of RHS = 32 bits. // LHS, and 13 bits of RHS = 32 bits.
unsigned Val = (CostSat << 30) | (OpNum << 27) | (LHS << 13) | RHS; unsigned Val = (CostSat << 30) | (OpNum << 26) | (LHS << 13) | RHS;
std::cout << " " << Val << "U,\t// "; std::cout << " " << Val << "U,\t// ";
PrintMask(i, std::cout); PrintMask(i, std::cout);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment