diff options
| author | Dan Gohman <gohman@apple.com> | 2009-02-18 05:09:16 +0000 |
|---|---|---|
| committer | Dan Gohman <gohman@apple.com> | 2009-02-18 05:09:16 +0000 |
| commit | 38a9631d5f04fe6b20909cfc2295f3dcc85cc873 (patch) | |
| tree | 33f284eae4e98de734f1c3187847f8c4f3d92dcd /llvm/lib/CodeGen/GCStrategy.cpp | |
| parent | 5805c98526ab0c0f5f1233c6ae95c79c77217fd5 (diff) | |
| download | llvm-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.cpp | 2 |
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"; |
