[ELF][ARM] Fix -Werror buildbots NFC.

Provide a missing initializer to get rid of warning provoking buildbot
failures.

error: missing field 'rel' initializer
[-Werror,-Wmissing-field-initializers]

llvm-svn: 371970
This commit is contained in:
Peter Smith 2019-09-16 10:07:53 +00:00
parent a1bc428b89
commit 1d74940b31
1 changed files with 1 additions and 1 deletions

View File

@ -250,7 +250,7 @@ static ScanResult scanCortexA8Errata657417(InputSection *isec, uint64_t &off,
if (off >= limit || limit - off < 8) {
// Need at least 2 4-byte sized instructions to trigger erratum.
off = limit;
return {0, 0};
return {0, 0, nullptr};
}
ScanResult scanRes = {0, 0, nullptr};