[llvm] r183175 - Silencing an MSVC warning about */ being found outside of a comment.
Aaron Ballman
aaron at aaronballman.com
Mon Jun 3 18:01:56 PDT 2013
Author: aaronballman
Date: Mon Jun 3 20:01:56 2013
New Revision: 183175
URL: http://llvm.org/viewvc/llvm-project?rev=183175&view=rev
Log:
Silencing an MSVC warning about */ being found outside of a comment.
Modified:
llvm/trunk/lib/Analysis/ScalarEvolution.cpp
Modified: llvm/trunk/lib/Analysis/ScalarEvolution.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Analysis/ScalarEvolution.cpp?rev=183175&r1=183174&r2=183175&view=diff
==============================================================================
--- llvm/trunk/lib/Analysis/ScalarEvolution.cpp (original)
+++ llvm/trunk/lib/Analysis/ScalarEvolution.cpp Mon Jun 3 20:01:56 2013
@@ -3947,7 +3947,7 @@ const SCEV *ScalarEvolution::createSCEV(
/// 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, Basic
/// 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;
More information about the llvm-commits
mailing list