[llvm] r268235 - Cleanup comments. NFC.
Chad Rosier via llvm-commits
llvm-commits at lists.llvm.org
Mon May 2 07:50:31 PDT 2016
Author: mcrosier
Date: Mon May 2 09:50:30 2016
New Revision: 268235
URL: http://llvm.org/viewvc/llvm-project?rev=268235&view=rev
Log:
Cleanup comments. NFC.
Modified:
llvm/trunk/lib/Target/AArch64/AArch64AddressTypePromotion.cpp
Modified: llvm/trunk/lib/Target/AArch64/AArch64AddressTypePromotion.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/AArch64/AArch64AddressTypePromotion.cpp?rev=268235&r1=268234&r2=268235&view=diff
==============================================================================
--- llvm/trunk/lib/Target/AArch64/AArch64AddressTypePromotion.cpp (original)
+++ llvm/trunk/lib/Target/AArch64/AArch64AddressTypePromotion.cpp Mon May 2 09:50:30 2016
@@ -20,10 +20,9 @@
// e = getelementptr ..., i64 a
//
// This is legal to do if the computations are marked with either nsw or nuw
-// markers.
-// Moreover, the current heuristic is simple: it does not create new sext
-// operations, i.e., it gives up when a sext would have forked (e.g., if
-// a = add i32 b, c, two sexts are required to promote the computation).
+// markers. Moreover, the current heuristic is simple: it does not create new
+// sext operations, i.e., it gives up when a sext would have forked (e.g., if a
+// = add i32 b, c, two sexts are required to promote the computation).
//
// FIXME: This pass may be useful for other targets too.
// ===---------------------------------------------------------------------===//
More information about the llvm-commits
mailing list