From 9cc5f8edb21ac07bff87def5155ee71dff449e37 Mon Sep 17 00:00:00 2001 From: YamaArashi Date: Wed, 17 Feb 2016 06:18:37 -0800 Subject: get rid of PTR macros --- gcc/final.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'gcc/final.c') diff --git a/gcc/final.c b/gcc/final.c index 23a1fe0..5175181 100755 --- a/gcc/final.c +++ b/gcc/final.c @@ -1055,8 +1055,8 @@ asm_insn_count (body) if (GET_CODE (body) == ASM_INPUT) template = XSTR (body, 0); else - template = decode_asm_operands (body, NULL_PTR, NULL_PTR, - NULL_PTR, NULL_PTR); + template = decode_asm_operands (body, NULL, NULL, + NULL, NULL); for ( ; *template; template++) if (IS_ASM_LOGICAL_LINE_SEPARATOR(*template) || *template == '\n') @@ -1492,7 +1492,7 @@ final_scan_insn (insn, file, optimize, prescan, nopeepholes) break; #ifdef FINAL_PRESCAN_LABEL - FINAL_PRESCAN_INSN (insn, NULL_PTR, 0); + FINAL_PRESCAN_INSN (insn, NULL, 0); #endif #ifdef DWARF2_DEBUGGING_INFO @@ -1684,8 +1684,8 @@ final_scan_insn (insn, file, optimize, prescan, nopeepholes) } /* Get out the operand values. */ - string = decode_asm_operands (body, ops, NULL_PTR, - NULL_PTR, NULL_PTR); + string = decode_asm_operands (body, ops, NULL, + NULL, NULL); /* Inhibit aborts on what would otherwise be compiler bugs. */ insn_noperands = noperands; this_is_asm_operands = insn; -- cgit v1.2.3