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 | 156c85ea42dc3085519c4f786336a4d78c45d086 (patch) | |
tree | 409cc19e8f24c1d5ddfccdaadfe07822179fc001 /llvm/utils/PerfectShuffle/PerfectShuffle.cpp | |
parent | 2951955da96f3a5ff358cd93bcdc8f8ddba8a71c (diff) | |
download | bcm5719-llvm-156c85ea42dc3085519c4f786336a4d78c45d086.tar.gz bcm5719-llvm-156c85ea42dc3085519c4f786336a4d78c45d086.zip |
rename the table
llvm-svn: 27737
Diffstat (limited to 'llvm/utils/PerfectShuffle/PerfectShuffle.cpp')
-rw-r--r-- | llvm/utils/PerfectShuffle/PerfectShuffle.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/utils/PerfectShuffle/PerfectShuffle.cpp b/llvm/utils/PerfectShuffle/PerfectShuffle.cpp index ae2e05f1d0a..1c234e4cc39 100644 --- a/llvm/utils/PerfectShuffle/PerfectShuffle.cpp +++ b/llvm/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; |