commit | a79db30d284205cf27d90f9a174a7eb28c8afcb8 | [log] [tgz] |
---|---|---|
author | Dan Gohman <gohman@apple.com> | Thu Sep 04 17:05:41 2008 +0000 |
committer | Dan Gohman <gohman@apple.com> | Thu Sep 04 17:05:41 2008 +0000 |
tree | 6889329ccf26fd620cce0799a3cdf94b0acde4e3 | |
parent | 4b19157ba913903a07284ad3c066da9a7e7fc8c6 [diff] [blame] |
Tidy up several unbeseeming casts from pointer to intptr_t. llvm-svn: 55779
diff --git a/llvm/lib/Target/Sparc/FPMover.cpp b/llvm/lib/Target/Sparc/FPMover.cpp index 016215b..a542fc5 100644 --- a/llvm/lib/Target/Sparc/FPMover.cpp +++ b/llvm/lib/Target/Sparc/FPMover.cpp
@@ -34,7 +34,7 @@ static char ID; FPMover(TargetMachine &tm) - : MachineFunctionPass((intptr_t)&ID), TM(tm) { } + : MachineFunctionPass(&ID), TM(tm) { } virtual const char *getPassName() const { return "Sparc Double-FP Move Fixer";