diff options
author | Joerg Sonnenberger <joerg@bec.de> | 2014-08-10 11:37:07 +0000 |
---|---|---|
committer | Joerg Sonnenberger <joerg@bec.de> | 2014-08-10 11:37:07 +0000 |
commit | b696d460459e10c86d5edebddd420065a161cd5d (patch) | |
tree | 80444d4f79b01644589afa8dc5b851ed8ea2949a /llvm/lib/MC | |
parent | 752b91bd821ad8a23e004b6cd631ae4f6984ae8b (diff) | |
download | bcm5719-llvm-b696d460459e10c86d5edebddd420065a161cd5d.tar.gz bcm5719-llvm-b696d460459e10c86d5edebddd420065a161cd5d.zip |
Fix tabs.
llvm-svn: 215311
Diffstat (limited to 'llvm/lib/MC')
-rw-r--r-- | llvm/lib/MC/MCExpr.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/llvm/lib/MC/MCExpr.cpp b/llvm/lib/MC/MCExpr.cpp index 2d86ae7d493..503f9de415c 100644 --- a/llvm/lib/MC/MCExpr.cpp +++ b/llvm/lib/MC/MCExpr.cpp @@ -633,7 +633,7 @@ static bool EvaluateSymbolicAdd(const MCAssembler *Asm, bool MCExpr::EvaluateAsRelocatable(MCValue &Res, const MCAsmLayout *Layout, - const MCFixup *Fixup) const { + const MCFixup *Fixup) const { MCAssembler *Assembler = Layout ? &Layout->getAssembler() : nullptr; return EvaluateAsRelocatableImpl(Res, Assembler, Layout, Fixup, nullptr, false, /*ForceVarExpansion*/ false); @@ -703,7 +703,7 @@ bool MCExpr::EvaluateAsRelocatableImpl(MCValue &Res, const MCAssembler *Asm, if (!AUE->getSubExpr()->EvaluateAsRelocatableImpl(Value, Asm, Layout, Fixup, Addrs, InSet, - ForceVarExpansion)) + ForceVarExpansion)) return false; switch (AUE->getOpcode()) { @@ -738,10 +738,10 @@ bool MCExpr::EvaluateAsRelocatableImpl(MCValue &Res, const MCAssembler *Asm, if (!ABE->getLHS()->EvaluateAsRelocatableImpl(LHSValue, Asm, Layout, Fixup, Addrs, InSet, - ForceVarExpansion) || + ForceVarExpansion) || !ABE->getRHS()->EvaluateAsRelocatableImpl(RHSValue, Asm, Layout, Fixup, Addrs, InSet, - ForceVarExpansion)) + ForceVarExpansion)) return false; // We only support a few operations on non-constant expressions, handle |