From 684c593d05db0bd277268fc9d8c05bce138c745a Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Thu, 3 Sep 2009 05:46:51 +0000 Subject: Thread an MCAsmInfo pointer through the various MC printing APIs, and fix a few things using << on MCSymbols to use ->print(). No functionality change other than unbreaking my previous patch. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80890 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/MC/MCSymbol.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'include/llvm/MC/MCSymbol.h') diff --git a/include/llvm/MC/MCSymbol.h b/include/llvm/MC/MCSymbol.h index 631fa12..5dd7d68 100644 --- a/include/llvm/MC/MCSymbol.h +++ b/include/llvm/MC/MCSymbol.h @@ -19,6 +19,7 @@ #include "llvm/Support/DataTypes.h" namespace llvm { + class MCAsmInfo; class MCSection; class MCContext; class raw_ostream; @@ -106,7 +107,7 @@ namespace llvm { /// @} /// print - Print the value to the stream \arg OS. - void print(raw_ostream &OS) const; + void print(raw_ostream &OS, const MCAsmInfo *MAI) const; /// dump - Print the value to stderr. void dump() const; -- cgit v1.1