Simplify a DEBUG statement to remove a set but not used variable in release builds.
authorEric Christopher <echristo@gmail.com>
Fri, 23 Feb 2018 21:14:47 +0000 (21:14 +0000)
committerEric Christopher <echristo@gmail.com>
Fri, 23 Feb 2018 21:14:47 +0000 (21:14 +0000)
llvm-svn: 325959

llvm/lib/MC/WasmObjectWriter.cpp

index 1f1132a..8b32cc4 100644 (file)
@@ -1181,15 +1181,12 @@ void WasmObjectWriter::writeObject(MCAssembler &Asm,
       DEBUG(dbgs() << "  -> segment index: " << Ref.Segment);
     } else {
       // A "true" Wasm global (currently just __stack_pointer)
-      unsigned WasmIndex;
-      if (WS.isDefined()) {
+      if (WS.isDefined())
         report_fatal_error("don't yet support defined globals");
-      } else {
-        // An import; the index was assigned above
-        WasmIndex = WasmIndices.find(&WS)->second;
-      }
 
-      DEBUG(dbgs() << "  -> global index: " << WasmIndex << "\n");
+      // An import; the index was assigned above
+      DEBUG(dbgs() << "  -> global index: " << WasmIndices.find(&WS)->second
+                   << "\n");
     }
 
     if (WS.isDefined())