aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Forney <mforney@mforney.org>2021-04-07 14:48:43 -0700
committerMichael Forney <mforney@mforney.org>2021-04-07 14:48:43 -0700
commit1c9fdf33eb2d4179c2c705dae0a13a00c2227af3 (patch)
tree0013c3b85dcb290a1f9e10aac7ae9b19ad199ae0
parent12695cb8c4483101cb18b04dfd4df11d993e7d8a (diff)
downloadcproc-1c9fdf33eb2d4179c2c705dae0a13a00c2227af3.tar.xz
qbe: Remove __PRETTY_FUNCTION__ declaration
We no longer define __GNUC__ so we don't have to work around glibc's assert definition anymore.
-rw-r--r--qbe.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/qbe.c b/qbe.c
index 0e57819..f3a6f44 100644
--- a/qbe.c
+++ b/qbe.c
@@ -560,11 +560,6 @@ mkfunc(struct decl *decl, char *name, struct type *t, struct scope *s)
d = mkdecl(DECLOBJECT, t, QUALNONE, LINKNONE);
d->value = mkglobal("__func__", true);
scopeputdecl(s, "__func__", d);
- /*
- needed for glibc's assert definition with __GNUC__=2 __GNUC_MINOR__=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"));