X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=lib%2FMC%2FMCValue.cpp;h=4393777211e80555e4bee1aec2fa16e6c7f1add1;hb=60e425e99ba7ef05b7a52c7068a67c6baa25da38;hp=9c7317096ce95d4a359d380ad270c8d8e7c5d9c9;hpb=2c11624b65a65fe487f335603dc0bf6372a50a89;p=oota-llvm.git diff --git a/lib/MC/MCValue.cpp b/lib/MC/MCValue.cpp index 9c7317096ce..4393777211e 100644 --- a/lib/MC/MCValue.cpp +++ b/lib/MC/MCValue.cpp @@ -8,23 +8,31 @@ //===----------------------------------------------------------------------===// #include "llvm/MC/MCValue.h" +#include "llvm/MC/MCExpr.h" +#include "llvm/Support/Debug.h" #include "llvm/Support/raw_ostream.h" using namespace llvm; -void MCValue::print(raw_ostream &OS) const { +void MCValue::print(raw_ostream &OS, const MCAsmInfo *MAI) const { if (isAbsolute()) { OS << getConstant(); return; } - OS << getSymA(); - if (getSymB()) - OS << " - " << getSymB(); + getSymA()->print(OS); + + if (getSymB()) { + OS << " - "; + getSymB()->print(OS); + } + if (getConstant()) OS << " + " << getConstant(); } +#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP) void MCValue::dump() const { - print(errs()); + print(dbgs(), 0); } +#endif