]> granicus.if.org Git - llvm/commitdiff
[ARM] Add curly braces around switch case [NFC]
authorPeter Smith <peter.smith@linaro.org>
Tue, 6 Jun 2017 10:22:49 +0000 (10:22 +0000)
committerPeter Smith <peter.smith@linaro.org>
Tue, 6 Jun 2017 10:22:49 +0000 (10:22 +0000)
My previous commit r304702 introduced a new case into a switch statement.
This case defined a variable but I forgot to add the curly brackets around the
case to limit the scope.

This change puts the curly braces back in so that the next person that adds a
case doesn't get a build failure. Thanks to avieira for the spot.

Differential Revision: https://reviews.llvm.org/D33931

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@304785 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/ARM/MCTargetDesc/ARMAsmBackend.cpp

index 2ac9b98d98c36c5e52c3c717025bb1a66c5c90c4..d99e9b6df80c40c3a30328e76a30fbaea8975d88 100644 (file)
@@ -695,7 +695,7 @@ unsigned ARMAsmBackend::adjustFixupValue(const MCFixup &Fixup, uint64_t Value,
       return 0;
     }
     return Value;
-  case ARM::fixup_t2_so_imm:
+  case ARM::fixup_t2_so_imm: {
     Value = ARM_AM::getT2SOImmVal(Value);
     if ((int64_t)Value < 0) {
       Ctx.reportError(Fixup.getLoc(), "out of range immediate fixup value");
@@ -712,6 +712,7 @@ unsigned ARMAsmBackend::adjustFixupValue(const MCFixup &Fixup, uint64_t Value,
     EncValue |= (Value & 0xff);
     return swapHalfWords(EncValue, IsLittleEndian);
   }
+  }
 }
 
 void ARMAsmBackend::processFixupValue(const MCAssembler &Asm,