Bug 875452 - Part 6.5: Fix const correctness issues in IonCaches.h (r=shu)

This commit is contained in:
Eric Faust 2013-08-10 22:20:36 -07:00
Родитель 2af4d34cd0
Коммит 905ce70eb6
1 изменённых файлов: 8 добавлений и 3 удалений

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

@ -143,8 +143,8 @@ class IonCache
bool is##ickind() const { \
return kind() == Cache_##ickind; \
} \
inline ickind##IC &to##ickind();
inline ickind##IC &to##ickind(); \
inline const ickind##IC &to##ickind() const;
IONCACHE_KIND_LIST(CACHEKIND_CASTS)
# undef CACHEKIND_CASTS
@ -248,7 +248,7 @@ class IonCache
}
#endif
bool pure() {
bool pure() const {
return pure_;
}
bool idempotent() const {
@ -1049,6 +1049,11 @@ class GetElementParIC : public ParallelIonCache
{ \
JS_ASSERT(is##ickind()); \
return *static_cast<ickind##IC *>(this); \
} \
const ickind##IC &IonCache::to##ickind() const \
{ \
JS_ASSERT(is##ickind()); \
return *static_cast<const ickind##IC *>(this); \
}
IONCACHE_KIND_LIST(CACHE_CASTS)
#undef OPCODE_CASTS