[llvm] r321127 - [WebAssembly] Remove an obsolete comment.
Dan Gohman via llvm-commits
llvm-commits at lists.llvm.org
Tue Dec 19 16:10:28 PST 2017
Author: djg
Date: Tue Dec 19 16:10:28 2017
New Revision: 321127
URL: http://llvm.org/viewvc/llvm-project?rev=321127&view=rev
Log:
[WebAssembly] Remove an obsolete comment.
Modified:
llvm/trunk/lib/MC/WasmObjectWriter.cpp
Modified: llvm/trunk/lib/MC/WasmObjectWriter.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/MC/WasmObjectWriter.cpp?rev=321127&r1=321126&r2=321127&view=diff
==============================================================================
--- llvm/trunk/lib/MC/WasmObjectWriter.cpp (original)
+++ llvm/trunk/lib/MC/WasmObjectWriter.cpp Tue Dec 19 16:10:28 2017
@@ -1132,8 +1132,7 @@ void WasmObjectWriter::writeObject(MCAss
Import.IsMutable = false;
SymbolIndices[&WS] = NumGlobalImports;
- // If this global is the stack pointer, make it mutable and remember it
- // so that we can emit metadata for it.
+ // If this global is the stack pointer, make it mutable.
if (WS.getName() == "__stack_pointer")
Import.IsMutable = true;
More information about the llvm-commits
mailing list