From: Serge Guelton Date: Mon, 19 Aug 2019 14:40:33 +0000 (+0000) Subject: [nfc] Silent gcc warning X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=25750c5dc01601590d487921c4221fec1cb1911f;p=llvm [nfc] Silent gcc warning git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@369266 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Target/AArch64/AArch64InstructionSelector.cpp b/lib/Target/AArch64/AArch64InstructionSelector.cpp index bab15dd8e75..59db0da1874 100644 --- a/lib/Target/AArch64/AArch64InstructionSelector.cpp +++ b/lib/Target/AArch64/AArch64InstructionSelector.cpp @@ -2963,9 +2963,8 @@ bool AArch64InstructionSelector::selectUnmergeValues( const LLT NarrowTy = MRI.getType(I.getOperand(0).getReg()); const LLT WideTy = MRI.getType(SrcReg); (void)WideTy; - assert(WideTy.isVector() || - WideTy.getSizeInBits() == 128 && - "can only unmerge from vector or s128 types!"); + assert((WideTy.isVector() || WideTy.getSizeInBits() == 128) && + "can only unmerge from vector or s128 types!"); assert(WideTy.getSizeInBits() > NarrowTy.getSizeInBits() && "source register size too small!");