mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-03-04 21:31:03 +00:00
Remove dead ctor
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@34121 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
7f481e5224
commit
4ef92d8d64
@ -73,17 +73,6 @@ SlotCalculator::SlotCalculator(const Module *M ) {
|
||||
processModule();
|
||||
}
|
||||
|
||||
SlotCalculator::SlotCalculator(const Function *M ) {
|
||||
TheModule = M ? M->getParent() : 0;
|
||||
|
||||
insertPrimitives();
|
||||
|
||||
if (TheModule == 0) return; // Empty table...
|
||||
|
||||
processModule(); // Process module level stuff
|
||||
incorporateFunction(M); // Start out in incorporated state
|
||||
}
|
||||
|
||||
// processModule - Process all of the module level function declarations and
|
||||
// types that are available.
|
||||
//
|
||||
|
@ -61,8 +61,6 @@ class SlotCalculator {
|
||||
void operator=(const SlotCalculator &); // DO NOT IMPLEMENT
|
||||
public:
|
||||
SlotCalculator(const Module *M);
|
||||
// Start out in incorp state
|
||||
SlotCalculator(const Function *F);
|
||||
|
||||
/// getSlot - Return the slot number of the specified value in it's type
|
||||
/// plane. This returns < 0 on error!
|
||||
|
Loading…
x
Reference in New Issue
Block a user