[lld] r321020 - [WebAssebmly] Fix the single clang-format issue in `wasm` directory

Sam Clegg via llvm-commits llvm-commits at lists.llvm.org
Mon Dec 18 12:20:24 PST 2017


Author: sbc
Date: Mon Dec 18 12:20:24 2017
New Revision: 321020

URL: http://llvm.org/viewvc/llvm-project?rev=321020&view=rev
Log:
[WebAssebmly] Fix the single clang-format issue in `wasm` directory

Modified:
    lld/trunk/wasm/OutputSections.cpp

Modified: lld/trunk/wasm/OutputSections.cpp
URL: http://llvm.org/viewvc/llvm-project/lld/trunk/wasm/OutputSections.cpp?rev=321020&r1=321019&r2=321020&view=diff
==============================================================================
--- lld/trunk/wasm/OutputSections.cpp (original)
+++ lld/trunk/wasm/OutputSections.cpp Mon Dec 18 12:20:24 2017
@@ -108,8 +108,7 @@ static void applyRelocation(uint8_t *Buf
   }
 }
 
-static void applyRelocations(uint8_t *Buf,
-                             ArrayRef<OutputRelocation> Relocs) {
+static void applyRelocations(uint8_t *Buf, ArrayRef<OutputRelocation> Relocs) {
   log("applyRelocations: count=" + Twine(Relocs.size()));
   for (const OutputRelocation &Reloc : Relocs) {
     applyRelocation(Buf, Reloc);




More information about the llvm-commits mailing list