forked from OSchip/llvm-project
[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:
parent
a1bc428b89
commit
1d74940b31
|
@ -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};
|
||||
|
|
Loading…
Reference in New Issue