aboutsummaryrefslogtreecommitdiff
path: root/gcc/c-gimplify.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/c-gimplify.c')
-rw-r--r--gcc/c-gimplify.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/gcc/c-gimplify.c b/gcc/c-gimplify.c
index e0b262d..3b84cd9 100644
--- a/gcc/c-gimplify.c
+++ b/gcc/c-gimplify.c
@@ -283,18 +283,6 @@ c_gimplify_stmt (tree *stmt_p)
ret = GS_OK;
break;
- case ASM_STMT:
- {
- tree new_stmt = build (ASM_EXPR, void_type_node, ASM_STRING (stmt),
- ASM_OUTPUTS (stmt), ASM_INPUTS (stmt),
- ASM_CLOBBERS (stmt));
- ASM_INPUT_P (new_stmt) = ASM_INPUT_P (stmt);
- ASM_VOLATILE_P (new_stmt) = ASM_VOLATILE_P (stmt);
- stmt = new_stmt;
- ret = GS_OK;
- }
- break;
-
default:
if (lang_gimplify_stmt && (*lang_gimplify_stmt) (&stmt))
{