Pass creator requires a TargetData member

llvm-svn: 3007
This commit is contained in:
Chris Lattner 2002-07-23 17:58:42 +00:00
parent 1201ce53fc
commit 5be9f9b357
1 changed files with 2 additions and 1 deletions

View File

@ -10,11 +10,12 @@
#define LLVM_TRANSFORMS_LEVELCHANGE_H
class Pass;
class TargetData;
// RaisePointerReferences - Try to eliminate as many pointer arithmetic
// expressions as possible, by converting expressions to use getelementptr and
// friends.
//
Pass *createRaisePointerReferencesPass();
Pass *createRaisePointerReferencesPass(const TargetData &TD);
#endif