From 1b71fb3a43dcc8f73a60c6a2d980eefc2375cc85 Mon Sep 17 00:00:00 2001 From: Linus Torvalds Date: Fri, 22 Oct 2004 21:17:12 -0700 Subject: Copy STMT_INTERNAL properly when inlining (In practice, it should always be a constant, so it did the right thing. But maybe it becomes that only after expansion at the inlining site..) --- inline.c | 1 + 1 file changed, 1 insertion(+) (limited to 'inline.c') diff --git a/inline.c b/inline.c index 1dced4d..fda874d 100644 --- a/inline.c +++ b/inline.c @@ -270,6 +270,7 @@ static struct statement *copy_one_statement(struct statement *stmt) switch(stmt->type) { case STMT_NONE: break; + case STMT_INTERNAL: case STMT_EXPRESSION: { struct expression *expr = copy_expression(stmt->expression); if (expr == stmt->expression) -- cgit v1.2.3-65-gdbad