aboutsummaryrefslogtreecommitdiff
path: root/scope.c
diff options
context:
space:
mode:
Diffstat (limited to 'scope.c')
-rw-r--r--scope.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/scope.c b/scope.c
index c557f47..fac5cb8 100644
--- a/scope.c
+++ b/scope.c
@@ -15,7 +15,7 @@ scopeinit(void)
{
static struct builtin {
char *name;
- struct declaration decl;
+ struct decl decl;
} builtins[] = {
{"__builtin_alloca", {.kind = DECLBUILTIN, .builtin = BUILTINALLOCA}},
{"__builtin_constant_p", {.kind = DECLBUILTIN, .builtin = BUILTINCONSTANTP}},
@@ -64,10 +64,10 @@ delscope(struct scope *s)
return parent;
}
-struct declaration *
+struct decl *
scopegetdecl(struct scope *s, const char *name, bool recurse)
{
- struct declaration *d;
+ struct decl *d;
struct hashtablekey k;
htabstrkey(&k, name);
@@ -95,7 +95,7 @@ scopegettag(struct scope *s, const char *name, bool recurse)
}
void
-scopeputdecl(struct scope *s, const char *name, struct declaration *d)
+scopeputdecl(struct scope *s, const char *name, struct decl *d)
{
struct hashtablekey k;