diff options
author | Chad Rosier <mcrosier@codeaurora.org> | 2016-05-02 14:50:30 +0000 |
---|---|---|
committer | Chad Rosier <mcrosier@codeaurora.org> | 2016-05-02 14:50:30 +0000 |
commit | 7b6001ee0f8c6183cd28597bbae36fbdc5ef6009 (patch) | |
tree | 8dbea5885da93111f277cb183aa70c12f43cf9ac | |
parent | 5c190d056d4fbd7d03e1330664e107dfbc329b22 (diff) | |
download | bcm5719-llvm-7b6001ee0f8c6183cd28597bbae36fbdc5ef6009.tar.gz bcm5719-llvm-7b6001ee0f8c6183cd28597bbae36fbdc5ef6009.zip |
Cleanup comments. NFC.
llvm-svn: 268235
-rw-r--r-- | llvm/lib/Target/AArch64/AArch64AddressTypePromotion.cpp | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/llvm/lib/Target/AArch64/AArch64AddressTypePromotion.cpp b/llvm/lib/Target/AArch64/AArch64AddressTypePromotion.cpp index 62d21208c0b..4846ef08c98 100644 --- a/llvm/lib/Target/AArch64/AArch64AddressTypePromotion.cpp +++ b/llvm/lib/Target/AArch64/AArch64AddressTypePromotion.cpp @@ -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. // ===---------------------------------------------------------------------===// |