forked from OSchip/llvm-project
IntRange, fixed warning in isSingleNumber method
llvm-svn: 159532
This commit is contained in:
parent
665c76bc52
commit
0373bbc8d6
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue