[llvm-commits] CVS: llvm/include/llvm/Transforms/Utils/UnifyFunctionExitNodes.h

Devang Patel dpatel at apple.com
Wed May 2 18:14:09 PDT 2007



Changes in directory llvm/include/llvm/Transforms/Utils:

UnifyFunctionExitNodes.h updated: 1.22 -> 1.23
---
Log message:

Drop 'const'


---
Diffs of the changes:  (+1 -1)

 UnifyFunctionExitNodes.h |    2 +-
 1 files changed, 1 insertion(+), 1 deletion(-)


Index: llvm/include/llvm/Transforms/Utils/UnifyFunctionExitNodes.h
diff -u llvm/include/llvm/Transforms/Utils/UnifyFunctionExitNodes.h:1.22 llvm/include/llvm/Transforms/Utils/UnifyFunctionExitNodes.h:1.23
--- llvm/include/llvm/Transforms/Utils/UnifyFunctionExitNodes.h:1.22	Wed May  2 16:39:18 2007
+++ llvm/include/llvm/Transforms/Utils/UnifyFunctionExitNodes.h	Wed May  2 20:11:53 2007
@@ -25,7 +25,7 @@
 struct UnifyFunctionExitNodes : public FunctionPass {
   BasicBlock *ReturnBlock, *UnwindBlock, *UnreachableBlock;
 public:
-  static const char ID; // Pass identifcation, replacement for typeid
+  static char ID; // Pass identifcation, replacement for typeid
   UnifyFunctionExitNodes() : FunctionPass((intptr_t)&ID),
                              ReturnBlock(0), UnwindBlock(0) {}
 






More information about the llvm-commits mailing list