Add binary_search_ranges debug.

GitOrigin-RevId: 866977f67c8816c9fb2fc1bcf0970f8f5cb4c03b
This commit is contained in:
levlam 2018-08-05 01:48:59 +03:00
parent fe32051267
commit 813ba873a8

View File

@ -1150,7 +1150,7 @@ static uint32 binary_search_ranges(const int32 (&ranges)[N], uint32 code) {
case 2:
return ((code - 1) | 1);
default:
UNREACHABLE();
LOG(FATAL) << code << " " << l << " " << r << " " << t;
return 0;
}
}