Remove unnecessary else.
authorSid Manning <sidneym@codeaurora.org>
Mon, 20 Oct 2014 13:08:19 +0000 (13:08 +0000)
committerSid Manning <sidneym@codeaurora.org>
Mon, 20 Oct 2014 13:08:19 +0000 (13:08 +0000)
llvm-svn: 220200

llvm/lib/Target/Hexagon/InstPrinter/HexagonInstPrinter.cpp

index a526942..1fd8d70 100644 (file)
@@ -39,8 +39,8 @@ static int getMinValue(uint64_t TSFlags) {
 
   if (isSigned)
     return -1U << (bits - 1);
-  else
-    return 0;
+
+  return 0;
 }
 
 // Return the maximum value that a constant extendable operand can have
@@ -53,8 +53,8 @@ static int getMaxValue(uint64_t TSFlags) {
 
   if (isSigned)
     return ~(-1U << (bits - 1));
-  else
-    return ~(-1U << bits);
+
+  return ~(-1U << bits);
 }
 
 // Return true if the instruction must be extended.