[PATCH] D11929: WebAssembly: NFC fix release build break, unused variable.
JF Bastien via llvm-commits
llvm-commits at lists.llvm.org
Mon Aug 10 21:53:19 PDT 2015
This revision was automatically updated to reflect the committed changes.
Closed by commit rL244570: WebAssembly: NFC fix release build break, unused variable. (authored by jfb).
Changed prior to commit:
http://reviews.llvm.org/D11929?vs=31769&id=31770#toc
Repository:
rL LLVM
http://reviews.llvm.org/D11929
Files:
llvm/trunk/lib/Target/WebAssembly/WebAssemblyAsmPrinter.cpp
Index: llvm/trunk/lib/Target/WebAssembly/WebAssemblyAsmPrinter.cpp
===================================================================
--- llvm/trunk/lib/Target/WebAssembly/WebAssemblyAsmPrinter.cpp
+++ llvm/trunk/lib/Target/WebAssembly/WebAssemblyAsmPrinter.cpp
@@ -126,6 +126,7 @@
auto Written =
FP.convertToHexString(buf, /*hexDigits=*/0, /*upperCase=*/false,
APFloat::rmNearestTiesToEven);
+ (void)Written;
assert(Written != 0);
assert(Written < BufBytes);
OS << ' ' << buf;
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D11929.31770.patch
Type: text/x-patch
Size: 556 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20150811/0ab185d2/attachment.bin>
More information about the llvm-commits
mailing list