This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: Patch for purge_addressof_1()


Jeff

The affected piece of code used to be  

	insns = get_insns();
	end_sequence()
	emit_insns_before (insns, insn);

but was recently changed to

	insn = get_sequence ();
	end_sequence ();
	emit_insns_before (insns, insn);

I will investigate further and confirm it is a SEQUENCE.

Graham


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]