forked from OSchip/llvm-project
[WASM] Remove other comparison of unsigned expression >= 0.
This should finally fix the GCC 7 build with -Werror. llvm-svn: 299313
This commit is contained in:
parent
deede839f2
commit
16fe5822f2
|
@ -810,7 +810,7 @@ SubtargetFeatures WasmObjectFile::getFeatures() const {
|
|||
bool WasmObjectFile::isRelocatableObject() const { return false; }
|
||||
|
||||
const WasmSection &WasmObjectFile::getWasmSection(DataRefImpl Ref) const {
|
||||
assert(Ref.d.a >= 0 && Ref.d.a < Sections.size());
|
||||
assert(Ref.d.a < Sections.size());
|
||||
return Sections[Ref.d.a];
|
||||
}
|
||||
|
||||
|
@ -826,8 +826,8 @@ WasmObjectFile::getWasmRelocation(const RelocationRef &Ref) const {
|
|||
|
||||
const wasm::WasmRelocation &
|
||||
WasmObjectFile::getWasmRelocation(DataRefImpl Ref) const {
|
||||
assert(Ref.d.a >= 0 && Ref.d.a < Sections.size());
|
||||
assert(Ref.d.a < Sections.size());
|
||||
const WasmSection& Sec = Sections[Ref.d.a];
|
||||
assert(Ref.d.b >= 0 && Ref.d.b < Sec.Relocations.size());
|
||||
assert(Ref.d.b < Sec.Relocations.size());
|
||||
return Sec.Relocations[Ref.d.b];
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue