aboutsummaryrefslogtreecommitdiff
path: root/gcc/gcc.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/gcc.c')
-rw-r--r--gcc/gcc.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/gcc/gcc.c b/gcc/gcc.c
index e89f399..9168a34 100644
--- a/gcc/gcc.c
+++ b/gcc/gcc.c
@@ -268,10 +268,12 @@ static const char *cross_compile = "0";
switch. The only case we support now is simply appending or deleting a
string to or from the end of the first part of the configuration name. */
+enum add_del {ADD, DELETE};
+
static const struct modify_target
{
const char *const sw;
- const enum add_del {ADD, DELETE} add_del;
+ const enum add_del add_del;
const char *const str;
}
modify_target[] = MODIFY_TARGET_NAME;