From 2e803ca5fd925c789b508e1463ea4417f2e1a2f4 Mon Sep 17 00:00:00 2001 From: Michael Forney Date: Sun, 24 Feb 2019 14:29:16 -0800 Subject: Make __PRETTY_FUNCTION__ a synonym for __func__ --- qbe.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/qbe.c b/qbe.c index 3a27b43..68a7d0c 100644 --- a/qbe.c +++ b/qbe.c @@ -383,6 +383,11 @@ mkfunc(char *name, struct type *t, struct scope *s) d = mkdecl(DECLOBJECT, t, LINKNONE); d->value = mkglobal("__func__", true); scopeputdecl(s, "__func__", d); + /* + needed for glibc's assert definition with __GNUC__=4 + XXX: this should also work at file scope, where it should evaluate to "toplevel" + */ + scopeputdecl(s, "__PRETTY_FUNCTION__", d); f->namedecl = d; funclabel(f, mkblock("body")); -- cgit v1.2.3