diff options
| author | Chris Lattner <sabre@nondot.org> | 2009-08-03 23:10:34 +0000 | 
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2009-08-03 23:10:34 +0000 | 
| commit | 00753fd1d8fe1788a360e5c66ff085fbe921530d (patch) | |
| tree | 331cd853368074de5a3edb7ff1225964f4416b70 /llvm/include | |
| parent | d033a62ff76a1ac685ab0b6be201bda3711536f6 (diff) | |
| download | bcm5719-llvm-00753fd1d8fe1788a360e5c66ff085fbe921530d.tar.gz bcm5719-llvm-00753fd1d8fe1788a360e5c66ff085fbe921530d.zip | |
Kill off SwitchToDataSection and SwitchToTextSection, woo.
llvm-svn: 78015
Diffstat (limited to 'llvm/include')
| -rw-r--r-- | llvm/include/llvm/CodeGen/AsmPrinter.h | 28 | 
1 files changed, 0 insertions, 28 deletions
| diff --git a/llvm/include/llvm/CodeGen/AsmPrinter.h b/llvm/include/llvm/CodeGen/AsmPrinter.h index bc3c7827ff6..cab75f1852d 100644 --- a/llvm/include/llvm/CodeGen/AsmPrinter.h +++ b/llvm/include/llvm/CodeGen/AsmPrinter.h @@ -143,34 +143,6 @@ namespace llvm {      ///      bool isVerbose() const { return VerboseAsm; } -    /// SwitchToTextSection - 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 -    /// explicitly requested section, we switch to the section indicated for the -    /// global instead of NewSection. -    /// -    /// If the new section is an empty string, this method forgets what the -    /// current section is, but does not emit a .section directive. -    /// -    /// This method is used when about to emit executable code. -    /// -    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 -    /// explicitly requested section, we switch to the section indicated for the -    /// global instead of NewSection. -    /// -    /// If the new section is an empty string, this method forgets what the -    /// current section is, but does not emit a .section directive. -    /// -    /// This method is used when about to emit data.  For most assemblers, this -    /// is the same as the SwitchToTextSection method, but not all assemblers -    /// are the same. -    /// -    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!      void SwitchToSection(const MCSection *NS); | 

