• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright (C) 2011 The Android Open Source Project
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 
17 public class Blort
18 {
19     private int field0 = 0;
20     private int field1 = 1;
21     private int field2 = 2;
22     private int field3 = 3;
23     private int field4 = 4;
24     private int field5 = 5;
25     private int field6 = 6;
26     private int field7 = 7;
27     private int field8 = 8;
28     private int field9 = 9;
29 
test()30     public void test() {
31         int v0 = field0;
32         int v1 = field1;
33         int v2 = field2;
34         int v3 = field3;
35         int v4 = field4;
36         int v5 = field5;
37         int v6 = field6;
38         int v7 = field7;
39         int v8 = field8;
40         int v9 = field9;
41         int v10 = field0;
42         int v11 = field1;
43         int v12 = field2;
44         int v13 = field3;
45         int v14 = field4;
46         int v15 = field5;
47         int v16 = field6;
48         int v17 = field7;
49         int v18 = field8;
50         int v19 = field9;
51 
52         sink(v0);
53         sink(v1);
54         sink(v2);
55         sink(v3);
56         sink(v4);
57         sink(v5);
58         sink(v6);
59         sink(v7);
60         sink(v8);
61         sink(v9);
62         sink(v10);
63         sink(v11);
64         sink(v12);
65         sink(v13);
66         sink(v14);
67         sink(v15);
68         sink(v16);
69         sink(v17);
70         sink(v18);
71         sink(v19);
72     }
73 
sink(int arg)74     private static void sink(int arg) {
75         // This space intentionally left blank.
76     }
77 }
78