[llvm] r249812 - [SystemZ] Remove superfluous braces in SystemZShortenInst.cpp
Jonas Paulsson via llvm-commits
llvm-commits at lists.llvm.org
Fri Oct 9 00:19:20 PDT 2015
Author: jonpa
Date: Fri Oct 9 02:19:20 2015
New Revision: 249812
URL: http://llvm.org/viewvc/llvm-project?rev=249812&view=rev
Log:
[SystemZ] Remove superfluous braces in SystemZShortenInst.cpp
Modified:
llvm/trunk/lib/Target/SystemZ/SystemZShortenInst.cpp
Modified: llvm/trunk/lib/Target/SystemZ/SystemZShortenInst.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/SystemZ/SystemZShortenInst.cpp?rev=249812&r1=249811&r2=249812&view=diff
==============================================================================
--- llvm/trunk/lib/Target/SystemZ/SystemZShortenInst.cpp (original)
+++ llvm/trunk/lib/Target/SystemZ/SystemZShortenInst.cpp Fri Oct 9 02:19:20 2015
@@ -246,10 +246,10 @@ bool SystemZShortenInst::processBlock(Ma
Changed |= shortenOn01(MI, SystemZ::SQDBR);
break;
- case SystemZ::WFSDB: {
+ case SystemZ::WFSDB:
Changed |= shortenOn001AddCC(MI, SystemZ::SDBR, CCLive);
break;
- }
+
case SystemZ::WFCDB:
Changed |= shortenOn01(MI, SystemZ::CDBR);
break;
More information about the llvm-commits
mailing list