diff options
author | Aaron Ballman <aaron@aaronballman.com> | 2013-06-04 01:01:56 +0000 |
---|---|---|
committer | Aaron Ballman <aaron@aaronballman.com> | 2013-06-04 01:01:56 +0000 |
commit | d07f55185c27e41ab21ce223d13cdca3f85ea643 (patch) | |
tree | b4dc5f737c2f6e010bbbe976a93a41e3795f883f | |
parent | 8b8fd2171c19b82b5807c3eaed2ce675b9c36258 (diff) | |
download | bcm5719-llvm-d07f55185c27e41ab21ce223d13cdca3f85ea643.tar.gz bcm5719-llvm-d07f55185c27e41ab21ce223d13cdca3f85ea643.zip |
Silencing an MSVC warning about */ being found outside of a comment.
llvm-svn: 183175
-rw-r--r-- | llvm/lib/Analysis/ScalarEvolution.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Analysis/ScalarEvolution.cpp b/llvm/lib/Analysis/ScalarEvolution.cpp index f876748af3d..288cd447523 100644 --- a/llvm/lib/Analysis/ScalarEvolution.cpp +++ b/llvm/lib/Analysis/ScalarEvolution.cpp @@ -3947,7 +3947,7 @@ const SCEV *ScalarEvolution::createSCEV(Value *V) { /// depends on a NSW assumption, and we would only fall back to a conservative /// trip count in that case. unsigned ScalarEvolution:: -getSmallConstantTripCount(Loop *L, BasicBlock */*ExitingBlock*/) { +getSmallConstantTripCount(Loop *L, BasicBlock * /*ExitingBlock*/) { const SCEVConstant *ExitCount = dyn_cast<SCEVConstant>(getBackedgeTakenCount(L)); if (!ExitCount) @@ -3976,7 +3976,7 @@ getSmallConstantTripCount(Loop *L, BasicBlock */*ExitingBlock*/) { /// As explained in the comments for getSmallConstantTripCount, this assumes /// that control exits the loop via ExitingBlock. unsigned ScalarEvolution:: -getSmallConstantTripMultiple(Loop *L, BasicBlock */*ExitingBlock*/) { +getSmallConstantTripMultiple(Loop *L, BasicBlock * /*ExitingBlock*/) { const SCEV *ExitCount = getBackedgeTakenCount(L); if (ExitCount == getCouldNotCompute()) return 1; |