mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-25 13:24:46 +00:00
MC: Remove unneeded context argument to MCExpr::Evaluate*.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@84233 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -62,14 +62,14 @@ public:
|
||||
///
|
||||
/// @param Res - The absolute value, if evaluation succeeds.
|
||||
/// @result - True on success.
|
||||
bool EvaluateAsAbsolute(MCContext &Ctx, int64_t &Res) const;
|
||||
bool EvaluateAsAbsolute(int64_t &Res) const;
|
||||
|
||||
/// EvaluateAsRelocatable - Try to evaluate the expression to a relocatable
|
||||
/// value, i.e. an expression of the fixed form (a - b + constant).
|
||||
///
|
||||
/// @param Res - The relocatable value, if evaluation succeeds.
|
||||
/// @result - True on success.
|
||||
bool EvaluateAsRelocatable(MCContext &Ctx, MCValue &Res) const;
|
||||
bool EvaluateAsRelocatable(MCValue &Res) const;
|
||||
|
||||
/// @}
|
||||
|
||||
|
Reference in New Issue
Block a user