You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ravi/tests/language/clang-output/tbaa.c

14 lines
170 B

#include "lua_hdr.h"
extern int test(struct lua_State *L, int y);
extern int i;
int test(struct lua_State *L, int y) {
int x = L->stacksize;
y = x+i;
return y;
}