From: Davide Italiano Date: Tue, 23 Feb 2016 18:39:38 +0000 (+0000) Subject: [X86ISelLowering] Stop typing the same return over and over and over. X-Git-Tag: llvmorg-3.9.0-rc1~13432 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=62b7f7a398a46e7c6cbe6709fab3c5b04de653a3;p=platform%2Fupstream%2Fllvm.git [X86ISelLowering] Stop typing the same return over and over and over. llvm-svn: 261666 --- diff --git a/llvm/lib/Target/X86/X86ISelLowering.cpp b/llvm/lib/Target/X86/X86ISelLowering.cpp index a0a3cc5..c4829fb 100644 --- a/llvm/lib/Target/X86/X86ISelLowering.cpp +++ b/llvm/lib/Target/X86/X86ISelLowering.cpp @@ -4043,17 +4043,20 @@ bool X86::isCalleePop(CallingConv::ID CallingConv, /// \brief Return true if the condition is an unsigned comparison operation. static bool isX86CCUnsigned(unsigned X86CC) { switch (X86CC) { - default: llvm_unreachable("Invalid integer condition!"); - case X86::COND_E: return true; - case X86::COND_G: return false; - case X86::COND_GE: return false; - case X86::COND_L: return false; - case X86::COND_LE: return false; - case X86::COND_NE: return true; - case X86::COND_B: return true; - case X86::COND_A: return true; - case X86::COND_BE: return true; - case X86::COND_AE: return true; + default: + llvm_unreachable("Invalid integer condition!"); + case X86::COND_E: + case X86::COND_NE: + case X86::COND_B: + case X86::COND_A: + case X86::COND_BE: + case X86::COND_AE: + return true; + case X86::COND_G: + case X86::COND_GE: + case X86::COND_L: + case X86::COND_LE: + return false; } }