IntRange, fixed warning in isSingleNumber method

llvm-svn: 159532
This commit is contained in:
Stepan Dyatkovskiy 2012-07-02 14:10:46 +00:00
parent 665c76bc52
commit 0373bbc8d6
1 changed files with 1 additions and 2 deletions

View File

@ -210,8 +210,7 @@ public:
return true;
case RANGE:
return false;
case UNKNOWN:
default:
default: // UNKNOWN
if (Low == High) {
const_cast<Type&>(RangeType) = SINGLE_NUMBER;
return true;