diff options
author | Dan Gohman <gohman@apple.com> | 2008-09-04 17:05:41 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2008-09-04 17:05:41 +0000 |
commit | a79db30d284205cf27d90f9a174a7eb28c8afcb8 (patch) | |
tree | 6889329ccf26fd620cce0799a3cdf94b0acde4e3 /llvm/lib/Target/MSIL/MSILWriter.h | |
parent | 4b19157ba913903a07284ad3c066da9a7e7fc8c6 (diff) | |
download | bcm5719-llvm-a79db30d284205cf27d90f9a174a7eb28c8afcb8.tar.gz bcm5719-llvm-a79db30d284205cf27d90f9a174a7eb28c8afcb8.zip |
Tidy up several unbeseeming casts from pointer to intptr_t.
llvm-svn: 55779
Diffstat (limited to 'llvm/lib/Target/MSIL/MSILWriter.h')
-rw-r--r-- | llvm/lib/Target/MSIL/MSILWriter.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Target/MSIL/MSILWriter.h b/llvm/lib/Target/MSIL/MSILWriter.h index b141e23d64c..c64ceeeff59 100644 --- a/llvm/lib/Target/MSIL/MSILWriter.h +++ b/llvm/lib/Target/MSIL/MSILWriter.h @@ -42,7 +42,7 @@ namespace { static char ID; MSILModule(const std::set<const Type *>*& _UsedTypes, const TargetData*& _TD) - : ModulePass((intptr_t)&ID), UsedTypes(_UsedTypes), TD(_TD) {} + : ModulePass(&ID), UsedTypes(_UsedTypes), TD(_TD) {} void getAnalysisUsage(AnalysisUsage &AU) const { AU.addRequired<FindUsedTypes>(); @@ -86,7 +86,7 @@ namespace { StaticInitList; const std::set<const Type *>* UsedTypes; static char ID; - MSILWriter(raw_ostream &o) : FunctionPass((intptr_t)&ID), Out(o) { + MSILWriter(raw_ostream &o) : FunctionPass(&ID), Out(o) { UniqID = 0; } |