From 565b6b353b1dd56268fa3f241f2848fe6c72c90c Mon Sep 17 00:00:00 2001 From: aoliva Date: Fri, 9 Mar 2007 15:10:33 +0000 Subject: * rtl.h (gen_rtx_ASM_INPUT): Use "" instead of NULL file name. * final.c (final_scan_insn): Test for non-"" file name. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@122750 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/rtl.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gcc/rtl.h') diff --git a/gcc/rtl.h b/gcc/rtl.h index 5c39efeecf0..5b0f8f48d27 100644 --- a/gcc/rtl.h +++ b/gcc/rtl.h @@ -1875,7 +1875,7 @@ extern GTY(()) rtx return_address_pointer_rtx; gen_rtx_fmt_si (ASM_INPUT, (MODE), (ARG0), (LOC)) #else #define gen_rtx_ASM_INPUT(MODE, ARG0) \ - gen_rtx_fmt_ssi (ASM_INPUT, (MODE), (ARG0), NULL, 0) + gen_rtx_fmt_ssi (ASM_INPUT, (MODE), (ARG0), "", 0) #define gen_rtx_ASM_INPUT_loc(MODE, ARG0, LOC) \ gen_rtx_fmt_ssi (ASM_INPUT, (MODE), (ARG0), (LOC).file, (LOC).line) #undef gen_rtx_ASM_OPERANDS -- cgit v1.2.1