summaryrefslogtreecommitdiffstats
path: root/core/java
diff options
context:
space:
mode:
Diffstat (limited to 'core/java')
-rw-r--r--core/java/android/os/Debug.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/core/java/android/os/Debug.java b/core/java/android/os/Debug.java
index 9c3bc9d..8d9867e 100644
--- a/core/java/android/os/Debug.java
+++ b/core/java/android/os/Debug.java
@@ -866,7 +866,8 @@ href="{@docRoot}guide/developing/tools/traceview.html">Traceview: A Graphical Lo
* </pre>
*/
public static class InstructionCount {
- private static final int NUM_INSTR = OpcodeInfo.MAXIMUM_VALUE + 1;
+ private static final int NUM_INSTR =
+ OpcodeInfo.MAXIMUM_PACKED_VALUE + 1;
private int[] mCounts;