namespace llvm {
-class Module;
-
//===----------------------------------------------------------------------===//
///
/// TargetSubtarget - Generic base class for all target subtargets. All
TargetSubtarget(const TargetSubtarget&); // DO NOT IMPLEMENT
void operator=(const TargetSubtarget&); // DO NOT IMPLEMENT
protected: // Can only create subclasses...
- /// This constructor initializes the data members to match that
- /// of the specified module.
- ///
- TargetSubtarget(const Module &M);
+ TargetSubtarget();
public:
virtual ~TargetSubtarget();
};
using namespace llvm;
X86Subtarget::X86Subtarget(const Module &M)
- : TargetSubtarget(M), stackAlignment(8),
+ : TargetSubtarget(), stackAlignment(8),
indirectExternAndWeakGlobals(false), asmDarwinLinkerStubs(false),
asmLeadingUnderscore(false), asmAlignmentIsInBytes(false),
asmPrintDotLocalConstants(false), asmPrintDotLCommConstants(false),