]> granicus.if.org Git - llvm/commitdiff
Fix build bots after r317622
authorDave Lee <davelee.com@gmail.com>
Tue, 7 Nov 2017 22:33:07 +0000 (22:33 +0000)
committerDave Lee <davelee.com@gmail.com>
Tue, 7 Nov 2017 22:33:07 +0000 (22:33 +0000)
Example build failure: http://lab.llvm.org:8011/builders/lld-x86_64-darwin13/builds/14660

TIL that the warning flags for local builds are loose compared to what build
servers use.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@317626 91177308-0d34-0410-b5e6-96231b3b80d8

tools/yaml2obj/yaml2elf.cpp

index 1792b1288829bf3ff69f5ef1166f3fea0a8b6de5..ae8dd15f596798cb14994dc36e1188f344b8a16e 100644 (file)
@@ -76,7 +76,7 @@ public:
   }
   /// asserts if name is not present in the map
   unsigned get(StringRef Name) const {
-    unsigned Idx;
+    unsigned Idx = 0;
     assert(!lookup(Name, Idx) && "Expected section not found in index");
     return Idx;
   }