Silence warning about an uninitialized variable.

llvm-svn: 119800
This commit is contained in:
Benjamin Kramer 2010-11-19 11:37:26 +00:00
parent b238de0415
commit c77ebcc9a5
1 changed files with 1 additions and 1 deletions

View File

@ -166,7 +166,7 @@ void SCEV::print(raw_ostream &OS) const {
case scUMaxExpr:
case scSMaxExpr: {
const SCEVNAryExpr *NAry = cast<SCEVNAryExpr>(this);
const char *OpStr;
const char *OpStr = 0;
switch (NAry->getSCEVType()) {
case scAddExpr: OpStr = " + "; break;
case scMulExpr: OpStr = " * "; break;