Rename MCValue::getCst to getConstant and add MCValue::isConstant.

llvm-svn: 74440
This commit is contained in:
Daniel Dunbar 2009-06-29 19:51:00 +00:00
parent 6037bc9e60
commit a97615adf8
2 changed files with 7 additions and 6 deletions

View File

@ -30,10 +30,11 @@ class MCValue {
int64_t Cst;
public:
int64_t getCst() const { return Cst; }
int64_t getConstant() const { return Cst; }
MCSymbol *getSymA() const { return SymA; }
MCSymbol *getSymB() const { return SymB; }
bool isConstant() const { return !SymA && !SymB; }
static MCValue get(MCSymbol *SymA, MCSymbol *SymB = 0, int64_t Val = 0) {
MCValue R;

View File

@ -66,11 +66,11 @@ static inline raw_ostream &operator<<(raw_ostream &os, const MCValue &Value) {
os << Value.getSymA()->getName();
if (Value.getSymB())
os << " - " << Value.getSymB()->getName();
if (Value.getCst())
os << " + " << Value.getCst();
if (Value.getConstant())
os << " + " << Value.getConstant();
} else {
assert(!Value.getSymB() && "Invalid machine code value!");
os << Value.getCst();
os << Value.getConstant();
}
return os;
@ -83,7 +83,7 @@ static inline int64_t truncateToSize(int64_t Value, unsigned Bytes) {
static inline MCValue truncateToSize(const MCValue &Value, unsigned Bytes) {
return MCValue::get(Value.getSymA(), Value.getSymB(),
truncateToSize(Value.getCst(), Bytes));
truncateToSize(Value.getConstant(), Bytes));
}
void MCAsmStreamer::SwitchSection(MCSection *Section) {