diff options
author | Daniel Dunbar <daniel@zuster.org> | 2009-08-31 08:09:09 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2009-08-31 08:09:09 +0000 |
commit | e2ace509fc1205bed97a5114b13534610d4dbf5e (patch) | |
tree | cc45bac3595da32dd301fe705ac49fa65a1d2599 /include/llvm/MC | |
parent | 883f920acb6d347c2be0c937302d621ca21ec9dd (diff) | |
download | external_llvm-e2ace509fc1205bed97a5114b13534610d4dbf5e.zip external_llvm-e2ace509fc1205bed97a5114b13534610d4dbf5e.tar.gz external_llvm-e2ace509fc1205bed97a5114b13534610d4dbf5e.tar.bz2 |
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.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/include/llvm/MC/MCStreamer.h b/include/llvm/MC/MCStreamer.h index 09fd68a..8183722 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, |