[llvm-commits] [llvm] r96199 - in /llvm/trunk/utils/TableGen: CodeGenDAGPatterns.cpp CodeGenDAGPatterns.h

Chris Lattner sabre at nondot.org
Sun Feb 14 14:33:49 PST 2010


Author: lattner
Date: Sun Feb 14 16:33:49 2010
New Revision: 96199

URL: http://llvm.org/viewvc/llvm-project?rev=96199&view=rev
Log:
constize

Modified:
    llvm/trunk/utils/TableGen/CodeGenDAGPatterns.cpp
    llvm/trunk/utils/TableGen/CodeGenDAGPatterns.h

Modified: llvm/trunk/utils/TableGen/CodeGenDAGPatterns.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/utils/TableGen/CodeGenDAGPatterns.cpp?rev=96199&r1=96198&r2=96199&view=diff

==============================================================================
--- llvm/trunk/utils/TableGen/CodeGenDAGPatterns.cpp (original)
+++ llvm/trunk/utils/TableGen/CodeGenDAGPatterns.cpp Sun Feb 14 16:33:49 2010
@@ -848,7 +848,7 @@
 
 /// NodeHasProperty - Return true if this node has the specified property.
 bool TreePatternNode::NodeHasProperty(SDNP Property,
-                                      CodeGenDAGPatterns &CGP) const {
+                                      const CodeGenDAGPatterns &CGP) const {
   if (isLeaf()) {
     if (const ComplexPattern *CP = getComplexPatternInfo(CGP))
       return CP->hasProperty(Property);
@@ -867,7 +867,7 @@
 /// TreeHasProperty - Return true if any node in this tree has the specified
 /// property.
 bool TreePatternNode::TreeHasProperty(SDNP Property,
-                                      CodeGenDAGPatterns &CGP) const {
+                                      const CodeGenDAGPatterns &CGP) const {
   if (NodeHasProperty(Property, CGP))
     return true;
   for (unsigned i = 0, e = getNumChildren(); i != e; ++i)

Modified: llvm/trunk/utils/TableGen/CodeGenDAGPatterns.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/utils/TableGen/CodeGenDAGPatterns.h?rev=96199&r1=96198&r2=96199&view=diff

==============================================================================
--- llvm/trunk/utils/TableGen/CodeGenDAGPatterns.h (original)
+++ llvm/trunk/utils/TableGen/CodeGenDAGPatterns.h Sun Feb 14 16:33:49 2010
@@ -243,11 +243,11 @@
   getComplexPatternInfo(const CodeGenDAGPatterns &CGP) const;
 
   /// NodeHasProperty - Return true if this node has the specified property.
-  bool NodeHasProperty(SDNP Property, CodeGenDAGPatterns &CGP) const;
+  bool NodeHasProperty(SDNP Property, const CodeGenDAGPatterns &CGP) const;
   
   /// TreeHasProperty - Return true if any node in this tree has the specified
   /// property.
-  bool TreeHasProperty(SDNP Property, CodeGenDAGPatterns &CGP) const;
+  bool TreeHasProperty(SDNP Property, const CodeGenDAGPatterns &CGP) const;
   
   /// isCommutativeIntrinsic - Return true if the node is an intrinsic which is
   /// marked isCommutative.





More information about the llvm-commits mailing list