aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2009-08-19 05:49:37 +0000
committerChris Lattner <sabre@nondot.org>2009-08-19 05:49:37 +0000
commit73266f9a953d9cb0833df1208c455725f5adf2ef (patch)
tree18396ebe0fb76e50f0d46f9dc21f09ec9d82975f /include/llvm
parent375a8bc49f1852a84bfefbe0085c08c6dde96101 (diff)
downloadexternal_llvm-73266f9a953d9cb0833df1208c455725f5adf2ef.zip
external_llvm-73266f9a953d9cb0833df1208c455725f5adf2ef.tar.gz
external_llvm-73266f9a953d9cb0833df1208c455725f5adf2ef.tar.bz2
eliminate AsmPrinter::SwitchToSection and just have clients
talk to the MCStreamer directly instead. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79405 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm')
-rw-r--r--include/llvm/CodeGen/AsmPrinter.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/include/llvm/CodeGen/AsmPrinter.h b/include/llvm/CodeGen/AsmPrinter.h
index 6024f48..617f0ee 100644
--- a/include/llvm/CodeGen/AsmPrinter.h
+++ b/include/llvm/CodeGen/AsmPrinter.h
@@ -158,10 +158,6 @@ namespace llvm {
///
bool isVerbose() const { return VerboseAsm; }
- /// SwitchToSection - Switch to the specified section of the executable if
- /// we are not already in it!
- void SwitchToSection(const MCSection *NS);
-
/// getGlobalLinkName - Returns the asm/link name of of the specified
/// global variable. Should be overridden by each target asm printer to
/// generate the appropriate value.