mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-31 09:25:42 +00:00
Remove unused AsmPrinter OptLevel argument, and propogate.
- This more or less amounts to a revert of r65379. I'm curious to know what happened that caused this variable to become unused. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@74579 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -65,8 +65,6 @@ namespace llvm {
|
||||
/// DW - If available, this is a pointer to the current dwarf writer.
|
||||
DwarfWriter *DW;
|
||||
|
||||
/// OptLevel - Generating code at a specific optimization level.
|
||||
CodeGenOpt::Level OptLevel;
|
||||
public:
|
||||
/// Output stream on which we're printing assembly code.
|
||||
///
|
||||
@@ -120,7 +118,7 @@ namespace llvm {
|
||||
|
||||
protected:
|
||||
explicit AsmPrinter(raw_ostream &o, TargetMachine &TM,
|
||||
const TargetAsmInfo *T, CodeGenOpt::Level OL, bool V);
|
||||
const TargetAsmInfo *T, bool V);
|
||||
|
||||
public:
|
||||
virtual ~AsmPrinter();
|
||||
@@ -139,7 +137,8 @@ namespace llvm {
|
||||
///
|
||||
/// This method is used when about to emit executable code.
|
||||
///
|
||||
void SwitchToTextSection(const char *NewSection, const GlobalValue *GV = NULL);
|
||||
void SwitchToTextSection(const char *NewSection,
|
||||
const GlobalValue *GV = NULL);
|
||||
|
||||
/// SwitchToDataSection - Switch to the specified section of the executable
|
||||
/// if we are not already in it! If GV is non-null and if the global has an
|
||||
@@ -153,7 +152,8 @@ namespace llvm {
|
||||
/// is the same as the SwitchToTextSection method, but not all assemblers
|
||||
/// are the same.
|
||||
///
|
||||
void SwitchToDataSection(const char *NewSection, const GlobalValue *GV = NULL);
|
||||
void SwitchToDataSection(const char *NewSection,
|
||||
const GlobalValue *GV = NULL);
|
||||
|
||||
/// SwitchToSection - Switch to the specified section of the executable if
|
||||
/// we are not already in it!
|
||||
|
Reference in New Issue
Block a user