mirror of
https://github.com/Gericom/teak-llvm.git
synced 2025-06-28 07:49:01 -04:00
10 lines
133 B
C
10 lines
133 B
C
int foo() {
|
|
int data[4];
|
|
int x = *(int *)(((char *)&data[0]) + 2);
|
|
return 42;
|
|
}
|
|
|
|
int main() {
|
|
return 0; // breakpoint line
|
|
}
|