aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--include/llvm/Support/IntegersSubset.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/llvm/Support/IntegersSubset.h b/include/llvm/Support/IntegersSubset.h
index e52a2f3cd6..35e2dadb95 100644
--- a/include/llvm/Support/IntegersSubset.h
+++ b/include/llvm/Support/IntegersSubset.h
@@ -210,7 +210,7 @@ public:
return true;
case RANGE:
return false;
- default: // UNKNOWN
+ case UNKNOWN:
if (Low == High) {
const_cast<Type&>(RangeType) = SINGLE_NUMBER;
return true;
@@ -218,6 +218,8 @@ public:
const_cast<Type&>(RangeType) = RANGE;
return false;
}
+ assert(!"Unknown state?!");
+ return false;
}
const IntType& getLow() const {