summaryrefslogtreecommitdiffstats
path: root/test/800-smali/smali/PackedSwitch.smali
blob: 6a3e5f00ba05e0d5888f94a01f6b410304308712 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
.class public LPackedSwitch;

.super Ljava/lang/Object;

.method public static packedSwitch(I)I
    .registers 2

    const/4 v0, 0
    packed-switch v0, :switch_data
    goto :default

    :switch_data
    .packed-switch 0x0
        :case
    .end packed-switch

    :return
    return v1

    :default
    goto :return

    :case
    goto :return

.end method