16 lines
226 B
Plaintext
16 lines
226 B
Plaintext
//test file for dead code eliminiation (dce)
|
|
int main(){
|
|
|
|
int i = 0;
|
|
int j = 0;
|
|
int a[100];
|
|
|
|
while(j < 100){
|
|
a[j] = j;
|
|
i = i * 2;
|
|
j = j + 1;
|
|
}
|
|
|
|
return a[j-1];
|
|
}
|