forked from OSchip/llvm-project
Move SlotCalculator.h to lib/Bytecode/Writer since that is the only place
that needs it after the Type != Value changes (bug 122). llvm-svn: 14605
This commit is contained in:
parent
bc70f74825
commit
5ef4237089
|
@ -62,9 +62,9 @@ class SlotCalculator {
|
|||
SlotCalculator(const SlotCalculator &); // DO NOT IMPLEMENT
|
||||
void operator=(const SlotCalculator &); // DO NOT IMPLEMENT
|
||||
public:
|
||||
SlotCalculator(const Module *M);
|
||||
SlotCalculator(const Module *M );
|
||||
// Start out in incorp state
|
||||
SlotCalculator(const Function *F);
|
||||
SlotCalculator(const Function *F );
|
||||
|
||||
/// getSlot - Return the slot number of the specified value in it's type
|
||||
/// plane. This returns < 0 on error!
|
Loading…
Reference in New Issue