From 83b162269f86daf085a9fc8dfe029bdf64cd6b06 Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Wed, 20 Dec 2017 00:10:28 +0000 Subject: [PATCH] [WebAssembly] Remove an obsolete comment. llvm-svn: 321127 --- llvm/lib/MC/WasmObjectWriter.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/llvm/lib/MC/WasmObjectWriter.cpp b/llvm/lib/MC/WasmObjectWriter.cpp index 6e76c5fac35f..f35c47bf549c 100644 --- a/llvm/lib/MC/WasmObjectWriter.cpp +++ b/llvm/lib/MC/WasmObjectWriter.cpp @@ -1132,8 +1132,7 @@ void WasmObjectWriter::writeObject(MCAssembler &Asm, 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;