Lines Matching refs:builtin_scope
36 static struct scope builtin_scope = { .next = &builtin_scope };
38 struct scope *block_scope = &builtin_scope, // regular automatic variables etc
40 *function_scope = &builtin_scope, // labels, arguments etc
41 *file_scope = &builtin_scope, // static
42 *global_scope = &builtin_scope; // externally visible
80 scope->next = &builtin_scope;
129 if (file_scope != &builtin_scope)
170 if (scope == &builtin_scope && block_scope->next == &builtin_scope)