summaryrefslogtreecommitdiff
path: root/include/llvm/MC
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2009-08-31 08:09:09 +0000
committerDaniel Dunbar <daniel@zuster.org>2009-08-31 08:09:09 +0000
commite2ace509fc1205bed97a5114b13534610d4dbf5e (patch)
treecc45bac3595da32dd301fe705ac49fa65a1d2599 /include/llvm/MC
parent883f920acb6d347c2be0c937302d621ca21ec9dd (diff)
downloadllvm-e2ace509fc1205bed97a5114b13534610d4dbf5e.tar.gz
llvm-e2ace509fc1205bed97a5114b13534610d4dbf5e.tar.bz2
llvm-e2ace509fc1205bed97a5114b13534610d4dbf5e.tar.xz
llvm-mc: Simplify EmitAssignment ('.set' is identical to '=').
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80577 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/MC')
-rw-r--r--include/llvm/MC/MCStreamer.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/include/llvm/MC/MCStreamer.h b/include/llvm/MC/MCStreamer.h
index 09fd68a1cc..8183722fea 100644
--- a/include/llvm/MC/MCStreamer.h
+++ b/include/llvm/MC/MCStreamer.h
@@ -116,11 +116,7 @@ namespace llvm {
///
/// @param Symbol - The symbol being assigned to.
/// @param Value - The value for the symbol.
- /// @param MakeAbsolute - If true, then the symbol should be given the
- /// absolute value of @param Value, even if @param Value would be
- /// relocatable expression. This corresponds to the ".set" directive.
- virtual void EmitAssignment(MCSymbol *Symbol, const MCValue &Value,
- bool MakeAbsolute = false) = 0;
+ virtual void EmitAssignment(MCSymbol *Symbol, const MCValue &Value) = 0;
/// EmitSymbolAttribute - Add the given @param Attribute to @param Symbol.
virtual void EmitSymbolAttribute(MCSymbol *Symbol,