Searched refs:StartValue (Results 1 - 1 of 1) sorted by relevance

/external/clang/lib/Sema/
H A DSemaInit.cpp2216 llvm::APSInt StartValue; local
2224 CheckArrayDesignatorExpr(*this, StartIndex, StartValue).take();
2234 } else if (StartValue.getBitWidth() > EndValue.getBitWidth())
2235 EndValue = EndValue.extend(StartValue.getBitWidth());
2236 else if (StartValue.getBitWidth() < EndValue.getBitWidth())
2237 StartValue = StartValue.extend(EndValue.getBitWidth());
2239 if (!StartDependent && !EndDependent && EndValue < StartValue) {
2241 << StartValue.toString(10) << EndValue.toString(10)

Completed in 54 milliseconds