diff options
| author | Andrea Corallo | 2019-06-22 17:13:03 +0200 |
|---|---|---|
| committer | Andrea Corallo | 2020-01-01 11:33:43 +0100 |
| commit | 7cbfd437a9bb2bcb5f4d776bb09572bb50965102 (patch) | |
| tree | 037df47d9bf09b8af192fcf7898d68860334527c /src | |
| parent | a31a164ea0b75c6523346fb9cc05233e036596d3 (diff) | |
| download | emacs-7cbfd437a9bb2bcb5f4d776bb09572bb50965102.tar.gz emacs-7cbfd437a9bb2bcb5f4d776bb09572bb50965102.zip | |
better logging into emit_scratch_callN
Diffstat (limited to 'src')
| -rw-r--r-- | src/comp.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/comp.c b/src/comp.c index c724f46a9b3..2b439fd2a56 100644 --- a/src/comp.c +++ b/src/comp.c | |||
| @@ -712,6 +712,12 @@ emit_scratch_callN (const char *f_name, unsigned nargs, gcc_jit_rvalue **args) | |||
| 712 | p[n] = 0x...; | 712 | p[n] = 0x...; |
| 713 | */ | 713 | */ |
| 714 | 714 | ||
| 715 | snprintf (tmp_str, sizeof (tmp_str), "calling %s", f_name); | ||
| 716 | |||
| 717 | gcc_jit_block_add_comment (comp.bblock->gcc_bb, | ||
| 718 | NULL, | ||
| 719 | tmp_str); | ||
| 720 | |||
| 715 | gcc_jit_lvalue *p = | 721 | gcc_jit_lvalue *p = |
| 716 | gcc_jit_function_new_local(comp.func, | 722 | gcc_jit_function_new_local(comp.func, |
| 717 | NULL, | 723 | NULL, |