aboutsummaryrefslogtreecommitdiff
path: root/include/llvm/Analysis/LoopVR.h
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2009-02-18 05:09:16 +0000
committerDan Gohman <gohman@apple.com>2009-02-18 05:09:16 +0000
commit865f006bb45a609e1cb6acb653af3fe5442ee4dc (patch)
tree0071ecd9b57dcc912f9cbfee237f2ed3e1335582 /include/llvm/Analysis/LoopVR.h
parent38ad0191e9d1a9887ee355afe12d22b38a608f72 (diff)
Eliminate several more unnecessary intptr_t casts.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@64888 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Analysis/LoopVR.h')
-rw-r--r--include/llvm/Analysis/LoopVR.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/Analysis/LoopVR.h b/include/llvm/Analysis/LoopVR.h
index db260c4350..1d806f83aa 100644
--- a/include/llvm/Analysis/LoopVR.h
+++ b/include/llvm/Analysis/LoopVR.h
@@ -30,7 +30,7 @@ class LoopVR : public FunctionPass {
public:
static char ID; // Class identification, replacement for typeinfo
- LoopVR() : FunctionPass(intptr_t(&ID)) {}
+ LoopVR() : FunctionPass(&ID) {}
bool runOnFunction(Function &F);
virtual void print(std::ostream &os, const Module *) const;