Some asmweriters want an _ prefix

llvm-svn: 15844
This commit is contained in:
Chris Lattner 2004-08-17 02:28:12 +00:00
parent 9a91081c51
commit 278f1cb3d4
1 changed files with 9 additions and 1 deletions

View File

@ -41,7 +41,15 @@ namespace llvm {
///
std::string CurrentFnName;
AsmPrinter(std::ostream &o, TargetMachine &tm) : O(o), TM(tm) { }
// Properties to be set by the derived class ctor, used to configure the
// asmwriter.
/// UsesUnderscorePrefix - If this flag is set to true, all identifiers
/// printed by the asmwriter will include a '_' prefix.
bool UsesUnderscorePrefix;
AsmPrinter(std::ostream &o, TargetMachine &tm)
: O(o), TM(tm), UsesUnderscorePrefix(false) { }
/// doInitialization - Set up the AsmPrinter when we are working on a new
/// module. If your pass overrides this, it must make sure to explicitly