OSDN Git Service

Cleanup comments. NFC.
authorChad Rosier <mcrosier@codeaurora.org>
Mon, 2 May 2016 14:50:30 +0000 (14:50 +0000)
committerChad Rosier <mcrosier@codeaurora.org>
Mon, 2 May 2016 14:50:30 +0000 (14:50 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@268235 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/AArch64/AArch64AddressTypePromotion.cpp

index 62d2120..4846ef0 100644 (file)
 // 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.
 // ===---------------------------------------------------------------------===//