This commit is contained in:
Alon Zakai 2011-12-07 11:32:43 -08:00
Родитель ac5c48218d
Коммит d47fe1fafd
1 изменённых файлов: 0 добавлений и 2 удалений

Просмотреть файл

@ -99,7 +99,6 @@ function SAFE_HEAP_STORE(dest, value, type, ignore) {
#else
case 'double': assert(dest % 4 == 0); warn64(); break;
#endif
default: abort('invalid type for setValue: ' + type);
}
#endif
@ -125,7 +124,6 @@ function SAFE_HEAP_LOAD(dest, type, unsigned, ignore) {
#else
case 'double': assert(dest % 4 == 0); warn64(); break;
#endif
default: abort('invalid type for setValue: ' + type);
}
#endif