diff options
author | Chris Lattner <sabre@nondot.org> | 2008-01-06 01:52:22 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2008-01-06 01:52:22 +0000 |
commit | f1ab4f18aad3950d0b9ff1273a276bb8d195d2d6 (patch) | |
tree | 0f9099ca94a5389133600fb221a25f47f2fce894 /utils/TableGen/CodeGenDAGPatterns.cpp | |
parent | 6cc654b27a9d392ac7660afcb23e3c8136e9ab28 (diff) |
improve const correctness.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@45646 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils/TableGen/CodeGenDAGPatterns.cpp')
-rw-r--r-- | utils/TableGen/CodeGenDAGPatterns.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/TableGen/CodeGenDAGPatterns.cpp b/utils/TableGen/CodeGenDAGPatterns.cpp index 670a138cb5..7e2830782f 100644 --- a/utils/TableGen/CodeGenDAGPatterns.cpp +++ b/utils/TableGen/CodeGenDAGPatterns.cpp @@ -1661,7 +1661,7 @@ void CodeGenDAGPatterns::ParseInstructions() { for (std::map<Record*, DAGInstruction>::iterator II = Instructions.begin(), E = Instructions.end(); II != E; ++II) { DAGInstruction &TheInst = II->second; - TreePattern *I = TheInst.getPattern(); + const TreePattern *I = TheInst.getPattern(); if (I == 0) continue; // No pattern. // FIXME: Assume only the first tree is the pattern. The others are clobber |