diff options
-rw-r--r-- | usr.bin/pcc/ccom/gcc_compat.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/usr.bin/pcc/ccom/gcc_compat.c b/usr.bin/pcc/ccom/gcc_compat.c index 9761d814927..f898f072eef 100644 --- a/usr.bin/pcc/ccom/gcc_compat.c +++ b/usr.bin/pcc/ccom/gcc_compat.c @@ -1,4 +1,4 @@ -/* $OpenBSD: gcc_compat.c,v 1.1 2007/10/07 17:58:51 otto Exp $ */ +/* $OpenBSD: gcc_compat.c,v 1.2 2007/10/07 18:36:58 otto Exp $ */ /* * Copyright (c) 2004 Anders Magnusson (ragge@ludd.luth.se). * All rights reserved. @@ -40,11 +40,16 @@ static struct kw { char *name, *ptr; int rv; } kw[] = { +/* + * Do NOT change the order of these entries unless you know + * what you're doing! + */ { "__asm", NULL, C_ASM }, { "__signed", NULL, 0 }, { "__inline", NULL, C_FUNSPEC }, { "__const", NULL, 0 }, { "__asm__", NULL, C_ASM }, + { "__inline__", NULL, C_FUNSPEC }, { NULL, NULL, 0 }, }; |