[llvm-commits] [llvm] r168013 - /llvm/trunk/lib/Transforms/InstCombine/InstCombineAndOrXor.cpp

NAKAMURA Takumi geek4civic at gmail.com
Wed Nov 14 16:35:50 PST 2012


Author: chapuni
Date: Wed Nov 14 18:35:50 2012
New Revision: 168013

URL: http://llvm.org/viewvc/llvm-project?rev=168013&view=rev
Log:
InstCombineAndOrXor.cpp: Escape bracket in doxygen description. [-Wdocumentation]

Modified:
    llvm/trunk/lib/Transforms/InstCombine/InstCombineAndOrXor.cpp

Modified: llvm/trunk/lib/Transforms/InstCombine/InstCombineAndOrXor.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Transforms/InstCombine/InstCombineAndOrXor.cpp?rev=168013&r1=168012&r2=168013&view=diff
==============================================================================
--- llvm/trunk/lib/Transforms/InstCombine/InstCombineAndOrXor.cpp (original)
+++ llvm/trunk/lib/Transforms/InstCombine/InstCombineAndOrXor.cpp Wed Nov 14 18:35:50 2012
@@ -269,7 +269,7 @@
 
 /// InsertRangeTest - Emit a computation of: (V >= Lo && V < Hi) if Inside is
 /// true, otherwise (V < Lo || V >= Hi).  In practice, we emit the more efficient
-/// (V-Lo) <u Hi-Lo.  This method expects that Lo <= Hi. isSigned indicates
+/// (V-Lo) \<u Hi-Lo.  This method expects that Lo <= Hi. isSigned indicates
 /// whether to treat the V, Lo and HI as signed or not. IB is the location to
 /// insert new instructions.
 Value *InstCombiner::InsertRangeTest(Value *V, Constant *Lo, Constant *Hi,





More information about the llvm-commits mailing list