aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/CodeGen/GCStrategy.cpp
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
commit38a9631d5f04fe6b20909cfc2295f3dcc85cc873 (patch)
tree33f284eae4e98de734f1c3187847f8c4f3d92dcd /llvm/lib/CodeGen/GCStrategy.cpp
parent5805c98526ab0c0f5f1233c6ae95c79c77217fd5 (diff)
downloadllvm-38a9631d5f04fe6b20909cfc2295f3dcc85cc873.zip
llvm-38a9631d5f04fe6b20909cfc2295f3dcc85cc873.tar.gz
llvm-38a9631d5f04fe6b20909cfc2295f3dcc85cc873.tar.bz2
Eliminate several more unnecessary intptr_t casts.
llvm-svn: 64888
Diffstat (limited to 'llvm/lib/CodeGen/GCStrategy.cpp')
-rw-r--r--llvm/lib/CodeGen/GCStrategy.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/GCStrategy.cpp b/llvm/lib/CodeGen/GCStrategy.cpp
index 3ec368f..ad7421a 100644
--- a/llvm/lib/CodeGen/GCStrategy.cpp
+++ b/llvm/lib/CodeGen/GCStrategy.cpp
@@ -313,7 +313,7 @@ FunctionPass *llvm::createGCMachineCodeAnalysisPass() {
char MachineCodeAnalysis::ID = 0;
MachineCodeAnalysis::MachineCodeAnalysis()
- : MachineFunctionPass(intptr_t(&ID)) {}
+ : MachineFunctionPass(&ID) {}
const char *MachineCodeAnalysis::getPassName() const {
return "Analyze Machine Code For Garbage Collection";