summaryrefslogtreecommitdiff
path: root/include/llvm/MC/MCExpr.h
diff options
context:
space:
mode:
authorDmitri Gribenko <gribozavr@gmail.com>2012-08-23 16:54:08 +0000
committerDmitri Gribenko <gribozavr@gmail.com>2012-08-23 16:54:08 +0000
commita00b80b04c5edb08639c1c6b32e9231fd8b066f7 (patch)
tree5489f28048894e81c7222b0942cf3e4130a11445 /include/llvm/MC/MCExpr.h
parent9d9f5a5855a711b1154e178e26f3766dc21d846a (diff)
downloadllvm-a00b80b04c5edb08639c1c6b32e9231fd8b066f7.tar.gz
llvm-a00b80b04c5edb08639c1c6b32e9231fd8b066f7.tar.bz2
llvm-a00b80b04c5edb08639c1c6b32e9231fd8b066f7.tar.xz
Fix a bunch of -Wdocumentation warnings.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@162446 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/MC/MCExpr.h')
-rw-r--r--include/llvm/MC/MCExpr.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/MC/MCExpr.h b/include/llvm/MC/MCExpr.h
index aa62eb2b16..ad65cba782 100644
--- a/include/llvm/MC/MCExpr.h
+++ b/include/llvm/MC/MCExpr.h
@@ -78,11 +78,11 @@ public:
/// values. If not given, then only non-symbolic expressions will be
/// evaluated.
/// @result - True on success.
+ bool EvaluateAsAbsolute(int64_t &Res, const MCAsmLayout &Layout,
+ const SectionAddrMap &Addrs) const;
bool EvaluateAsAbsolute(int64_t &Res) const;
bool EvaluateAsAbsolute(int64_t &Res, const MCAssembler &Asm) const;
bool EvaluateAsAbsolute(int64_t &Res, const MCAsmLayout &Layout) const;
- bool EvaluateAsAbsolute(int64_t &Res, const MCAsmLayout &Layout,
- const SectionAddrMap &Addrs) const;
/// EvaluateAsRelocatable - Try to evaluate the expression to a relocatable
/// value, i.e. an expression of the fixed form (a - b + constant).