diff options
| author | 2016-02-25 11:37:38 +0000 | |
|---|---|---|
| committer | 2016-02-26 16:01:59 +0000 | |
| commit | a1de9188a05afdecca8cd04ecc4fefbac8b9880f (patch) | |
| tree | a671c8aef814ccf194e5c3950a551f2711516c53 /runtime/primitive.h | |
| parent | 950d063395c7cecbbe372fd607468018d661a35c (diff) | |
Optimizing: Reduce memory usage of HInstructions.
Pack narrow fields and flags into a single 32-bit field.
Change-Id: Ib2f7abf987caee0339018d21f0d498f8db63542d
Diffstat (limited to 'runtime/primitive.h')
| -rw-r--r-- | runtime/primitive.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/runtime/primitive.h b/runtime/primitive.h index ca42c4790c..2454a2117b 100644 --- a/runtime/primitive.h +++ b/runtime/primitive.h @@ -46,6 +46,7 @@ class Primitive { kPrimFloat, kPrimDouble, kPrimVoid, + kPrimLast = kPrimVoid }; static Type GetType(char type) { |