mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-02-01 05:01:59 +01:00
Silencing an MSVC warning about */ being found outside of a comment.
llvm-svn: 183175
This commit is contained in:
parent
ea044d82e0
commit
0db8b59c69
@ -3947,7 +3947,7 @@ const SCEV *ScalarEvolution::createSCEV(Value *V) {
|
|||||||
/// depends on a NSW assumption, and we would only fall back to a conservative
|
/// depends on a NSW assumption, and we would only fall back to a conservative
|
||||||
/// trip count in that case.
|
/// trip count in that case.
|
||||||
unsigned ScalarEvolution::
|
unsigned ScalarEvolution::
|
||||||
getSmallConstantTripCount(Loop *L, BasicBlock */*ExitingBlock*/) {
|
getSmallConstantTripCount(Loop *L, BasicBlock * /*ExitingBlock*/) {
|
||||||
const SCEVConstant *ExitCount =
|
const SCEVConstant *ExitCount =
|
||||||
dyn_cast<SCEVConstant>(getBackedgeTakenCount(L));
|
dyn_cast<SCEVConstant>(getBackedgeTakenCount(L));
|
||||||
if (!ExitCount)
|
if (!ExitCount)
|
||||||
@ -3976,7 +3976,7 @@ getSmallConstantTripCount(Loop *L, BasicBlock */*ExitingBlock*/) {
|
|||||||
/// As explained in the comments for getSmallConstantTripCount, this assumes
|
/// As explained in the comments for getSmallConstantTripCount, this assumes
|
||||||
/// that control exits the loop via ExitingBlock.
|
/// that control exits the loop via ExitingBlock.
|
||||||
unsigned ScalarEvolution::
|
unsigned ScalarEvolution::
|
||||||
getSmallConstantTripMultiple(Loop *L, BasicBlock */*ExitingBlock*/) {
|
getSmallConstantTripMultiple(Loop *L, BasicBlock * /*ExitingBlock*/) {
|
||||||
const SCEV *ExitCount = getBackedgeTakenCount(L);
|
const SCEV *ExitCount = getBackedgeTakenCount(L);
|
||||||
if (ExitCount == getCouldNotCompute())
|
if (ExitCount == getCouldNotCompute())
|
||||||
return 1;
|
return 1;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user