]> granicus.if.org Git - clang/commitdiff
[Driver][Mips] Remove redundant brackets.
authorSimon Atanasyan <simon@atanasyan.com>
Sat, 28 Jun 2014 15:56:03 +0000 (15:56 +0000)
committerSimon Atanasyan <simon@atanasyan.com>
Sat, 28 Jun 2014 15:56:03 +0000 (15:56 +0000)
No functional changes.

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

lib/Basic/Targets.cpp

index d563cbeba75e65182669a3c8b5bc96fa809a0a80..352deb0ab74a2fed676a798ed87b6f3c682bc891 100644 (file)
@@ -5520,7 +5520,7 @@ public:
     MaxAtomicPromoteWidth = MaxAtomicInlineWidth = 32;
   }
   bool setABI(const std::string &Name) override {
-    if ((Name == "o32") || (Name == "eabi")) {
+    if (Name == "o32" || Name == "eabi") {
       ABI = Name;
       return true;
     } else if (Name == "32") {