diff options
author | Chris Lattner <sabre@nondot.org> | 2006-04-17 00:33:35 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2006-04-17 00:33:35 +0000 |
commit | 3033d4d3759e3552e7e9d846b02c30c916e6953e (patch) | |
tree | aeaebf8af496d26934374cabb900fdc8e5a834b5 /utils | |
parent | 27e98aa07c836276fc7f546da62c791ad63863d1 (diff) |
rename the table
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@27737 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils')
-rw-r--r-- | utils/PerfectShuffle/PerfectShuffle.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/PerfectShuffle/PerfectShuffle.cpp b/utils/PerfectShuffle/PerfectShuffle.cpp index ae2e05f1d0..1c234e4cc3 100644 --- a/utils/PerfectShuffle/PerfectShuffle.cpp +++ b/utils/PerfectShuffle/PerfectShuffle.cpp @@ -375,7 +375,7 @@ int main() { // Build up the table to emit. std::cout << "\n// This table is 6561*4 = 26244 bytes in size.\n"; - std::cout << "static const unsigned InstrTab[6561+1] = {\n"; + std::cout << "static const unsigned PerfectShuffleTable[6561+1] = {\n"; for (unsigned i = 0; i != 0x8889; ++i) { if (!isValidMask(i)) continue; |