diff options
Diffstat (limited to 'gcc/genconditions.c')
-rw-r--r-- | gcc/genconditions.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/genconditions.c b/gcc/genconditions.c index 2d4cf8d2a61..32ac5aef475 100644 --- a/gcc/genconditions.c +++ b/gcc/genconditions.c @@ -57,7 +57,7 @@ add_condition (const char *expr) if (expr[0] == 0) return; - test = (struct c_test *) xmalloc (sizeof (struct c_test)); + test = xmalloc (sizeof (struct c_test)); test->expr = expr; *(htab_find_slot (condition_table, test, INSERT)) = test; |