aboutsummaryrefslogtreecommitdiff
path: root/statement.c
diff options
context:
space:
mode:
authorJustus Winter <4winter@informatik.uni-hamburg.de>2013-08-15 19:02:03 +0200
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2013-08-19 17:41:39 +0200
commitd332911d06061a79f0c14831ff5257c50a898665 (patch)
tree01254294ad4190325d7c9e8d9e88986ed45199ee /statement.c
parent6f25b12e5e32876480e4965e3b61cffb3f7499e2 (diff)
downloadmig-d332911d06061a79f0c14831ff5257c50a898665.tar.gz
mig-d332911d06061a79f0c14831ff5257c50a898665.tar.bz2
mig-d332911d06061a79f0c14831ff5257c50a898665.zip
Drop the register keyword
Drop the register keyword both from MIGs code and from the generated code. The register keyword is only a hint and it is ignored by modern compilers. * alloca.c: Drop the register keyword. * header.c: Likewise. * lexxer.l: Likewise. * parser.y: Likewise. * routine.c: Likewise. * server.c: Likewise. * statement.c: Likewise. * string.c: Likewise. * type.c: Likewise. * user.c: Likewise. * utils.c: Likewise. * vprint.c: Likewise.
Diffstat (limited to 'statement.c')
-rw-r--r--statement.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/statement.c b/statement.c
index d26e17c..1110698 100644
--- a/statement.c
+++ b/statement.c
@@ -36,7 +36,7 @@ static statement_t **last = &StatementList;
statement_t *
stAlloc(void)
{
- register statement_t *new;
+ statement_t *new;
new = malloc(sizeof *new);
if (new == stNULL)