diff options
Diffstat (limited to 'gcc/cp/parser.c')
-rw-r--r-- | gcc/cp/parser.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/cp/parser.c b/gcc/cp/parser.c index 8e11d43..ec4c2ea 100644 --- a/gcc/cp/parser.c +++ b/gcc/cp/parser.c @@ -36,6 +36,7 @@ #include "toplev.h" #include "output.h" #include "target.h" +#include "cgraph.h" #include "c-common.h" @@ -10741,7 +10742,7 @@ cp_parser_asm_definition (cp_parser* parser) } } else - assemble_asm (string); + cgraph_add_asm_node (string); } /* Declarators [gram.dcl.decl] */ |