From 4469a05f2874674f563a389325d18a6c3ae9f8b6 Mon Sep 17 00:00:00 2001 From: Aaron Ballman Date: Mon, 10 Aug 2015 15:22:39 +0000 Subject: [PATCH] Silence a sign mismatch warning; NFC. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@244452 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/MC/MCDwarf.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/MC/MCDwarf.cpp b/lib/MC/MCDwarf.cpp index cfe58dae343..2d8912b71f1 100644 --- a/lib/MC/MCDwarf.cpp +++ b/lib/MC/MCDwarf.cpp @@ -220,7 +220,7 @@ MCDwarfLineTableHeader::Emit(MCStreamer *MCOS, 1 // DW_LNS_set_isa }; assert(array_lengthof(StandardOpcodeLengths) >= - (Params.DWARF2LineOpcodeBase - 1)); + (Params.DWARF2LineOpcodeBase - 1U)); return Emit(MCOS, Params, ArrayRef(StandardOpcodeLengths, Params.DWARF2LineOpcodeBase - 1)); } -- 2.34.1