mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-10-29 23:12:55 +01:00
e8b15df0fa
llvm-svn: 6217
11 lines
173 B
C++
11 lines
173 B
C++
#include <stdio.h>
|
|
|
|
extern int table[];
|
|
|
|
int main() {
|
|
printf("%d %d %d %d\n", table[0], table[1], table[2], table[3]);
|
|
return table[1];
|
|
}
|
|
|
|
int table[] = { 1, 0, 3, 4 };
|