[llvm-branch-commits] [llvm] bfd75bd - [NFC] Removed extra text in comments

Dávid Bolvanský via llvm-branch-commits llvm-branch-commits at lists.llvm.org
Sat Jan 16 13:53:54 PST 2021


Author: Dávid Bolvanský
Date: 2021-01-16T22:48:56+01:00
New Revision: bfd75bdf3fd62d4f5e7028d4122f9ffa517f2a09

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

LOG: [NFC] Removed extra text in comments

Added: 
    

Modified: 
    llvm/lib/Analysis/InstructionSimplify.cpp

Removed: 
    


################################################################################
diff  --git a/llvm/lib/Analysis/InstructionSimplify.cpp b/llvm/lib/Analysis/InstructionSimplify.cpp
index 6a065c46d9bf..b672798aaffc 100644
--- a/llvm/lib/Analysis/InstructionSimplify.cpp
+++ b/llvm/lib/Analysis/InstructionSimplify.cpp
@@ -2236,7 +2236,7 @@ static Value *SimplifyOrInst(Value *Op0, Value *Op1, const SimplifyQuery &Q,
 
   // Commute the 'or' operands.
   // (A ^ B) | (A & ~B) -> (A ^ B)
-  // (A ^ B) | (~B & A) -> (A ^ B)D94870
+  // (A ^ B) | (~B & A) -> (A ^ B)
   // (B ^ A) | (A & ~B) -> (B ^ A)
   // (B ^ A) | (~B & A) -> (B ^ A)
   if (match(Op0, m_Xor(m_Value(A), m_Value(B))) &&


        


More information about the llvm-branch-commits mailing list