commit | 46a803a67e7b3157f11173e696a8e724c6af190e | [log] [tgz] |
---|---|---|
author | Dan Gohman <gohman@apple.com> | Tue Aug 11 15:15:10 2009 +0000 |
committer | Dan Gohman <gohman@apple.com> | Tue Aug 11 15:15:10 2009 +0000 |
tree | 2a26516a1bc09f3b7ebaa75a736f5899655d0d27 | |
parent | f038e30eeed7579166cee58c258551633132880b [diff] [blame] |
Remove unnecessary casts. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@78664 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Transforms/IPO/MergeFunctions.cpp b/lib/Transforms/IPO/MergeFunctions.cpp index db8a817..cb51bc3 100644 --- a/lib/Transforms/IPO/MergeFunctions.cpp +++ b/lib/Transforms/IPO/MergeFunctions.cpp
@@ -64,7 +64,7 @@ namespace { struct VISIBILITY_HIDDEN MergeFunctions : public ModulePass { static char ID; // Pass identification, replacement for typeid - MergeFunctions() : ModulePass((intptr_t)&ID) {} + MergeFunctions() : ModulePass(&ID) {} bool runOnModule(Module &M); };