[llvm] 163bd9d - Fix `-Wpedantic` warnings. NFC.

Michael Liao via llvm-commits llvm-commits at lists.llvm.org
Tue Apr 21 13:09:42 PDT 2020


Author: Michael Liao
Date: 2020-04-21T16:09:17-04:00
New Revision: 163bd9d858008c6f48ec38f3ba857faf9bd6c543

URL: https://github.com/llvm/llvm-project/commit/163bd9d858008c6f48ec38f3ba857faf9bd6c543
DIFF: https://github.com/llvm/llvm-project/commit/163bd9d858008c6f48ec38f3ba857faf9bd6c543.diff

LOG: Fix `-Wpedantic` warnings. NFC.

Added: 
    

Modified: 
    llvm/lib/Transforms/InstCombine/InstCombineNegator.cpp

Removed: 
    


################################################################################
diff  --git a/llvm/lib/Transforms/InstCombine/InstCombineNegator.cpp b/llvm/lib/Transforms/InstCombine/InstCombineNegator.cpp
index 2655ef304787..32f37c6d04cf 100644
--- a/llvm/lib/Transforms/InstCombine/InstCombineNegator.cpp
+++ b/llvm/lib/Transforms/InstCombine/InstCombineNegator.cpp
@@ -319,7 +319,7 @@ LLVM_NODISCARD Value *Negator::visit(Value *V, unsigned Depth) {
   }
 
   llvm_unreachable("Can't get here. We always return from switch.");
-};
+}
 
 LLVM_NODISCARD Optional<Negator::Result> Negator::run(Value *Root) {
   Value *Negated = visit(Root, /*Depth=*/0);
@@ -331,7 +331,7 @@ LLVM_NODISCARD Optional<Negator::Result> Negator::run(Value *Root) {
     return llvm::None;
   }
   return std::make_pair(ArrayRef<Instruction *>(NewInstructions), Negated);
-};
+}
 
 LLVM_NODISCARD Value *Negator::Negate(bool LHSIsZero, Value *Root,
                                       InstCombiner &IC) {
@@ -374,4 +374,4 @@ LLVM_NODISCARD Value *Negator::Negate(bool LHSIsZero, Value *Root,
 
   // And return the new root.
   return Res->second;
-};
+}


        


More information about the llvm-commits mailing list