Forgot to check-in this as part of 7761.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@66763 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Sanjiv Gupta 2009-03-12 03:20:07 +00:00
parent d076570a66
commit 054401b9f2

View File

@ -27,7 +27,7 @@ namespace llvm {
PIC16AsmPrinter(raw_ostream &O, TargetMachine &TM,
const TargetAsmInfo *T, bool F)
: AsmPrinter(O, TM, T, F) {
CurrentBankselLabelInBasicBlock = "";
CurBank = "";
IsRomData = false;
}
private :
@ -50,10 +50,9 @@ namespace llvm {
protected:
bool doInitialization(Module &M);
bool doFinalization(Module &M);
bool inSameBank(char *s1, char *s2);
private:
std::string CurrentBankselLabelInBasicBlock;
std::string CurBank;
bool IsRomData;
};
} // end of namespace