From 81283cde509465d8486730bde2e8b5468795932f Mon Sep 17 00:00:00 2001 From: Alan Modra Date: Tue, 19 Nov 2002 07:32:28 +0000 Subject: [PATCH] * config/tc-alpha.c (s_alpha_prologue): as_bad when sym is NULL. --- gas/ChangeLog | 4 ++++ gas/config/tc-alpha.c | 7 ++++++- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/gas/ChangeLog b/gas/ChangeLog index 5f7e79b3c88..e785974d55c 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,7 @@ +2002-11-19 Luke Deller + + * config/tc-alpha.c (s_alpha_prologue): as_bad when sym is NULL. + 2002-11-18 Kevin Buettner * dwarf2dbg.h (dwarf2_format): New enum. diff --git a/gas/config/tc-alpha.c b/gas/config/tc-alpha.c index 7c8a00d3541..9fb53bffe51 100644 --- a/gas/config/tc-alpha.c +++ b/gas/config/tc-alpha.c @@ -4521,7 +4521,12 @@ s_alpha_prologue (ignore) sym = ecoff_get_cur_proc_sym (); else sym = alpha_cur_ent_sym; - know (sym != NULL); + + if (sym == NULL) + { + as_bad (_(".prologue directive without a preceding .ent directive")); + return; + } switch (arg) { -- 2.30.2