From 6930a6dc8220dfb0d4e42d65791852b6ec0284fa Mon Sep 17 00:00:00 2001 From: George Rimar Date: Tue, 26 Jul 2016 18:41:06 +0000 Subject: [PATCH] Attemp to fix build bot: http://lab.llvm.org:8011/builders/lld-x86_64-darwin13/builds/25329/steps/build_Lld llvm-svn: 276789 --- lld/ELF/LinkerScript.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lld/ELF/LinkerScript.cpp b/lld/ELF/LinkerScript.cpp index 1079a2fa99b3..904e94f982ab 100644 --- a/lld/ELF/LinkerScript.cpp +++ b/lld/ELF/LinkerScript.cpp @@ -774,6 +774,8 @@ static uint64_t getSymbolValue(StringRef S) { if (SymbolBody *B = Symtab::X->find(S)) return B->getVA(); break; + default: + fatal("unsupported target"); } error("symbol not found: " + S); return 0;