diff options
| author | Kimplul <kimi.h.kuparinen@gmail.com> | 2024-04-11 11:45:48 +0300 |
|---|---|---|
| committer | Kimplul <kimi.h.kuparinen@gmail.com> | 2024-04-11 11:45:48 +0300 |
| commit | 8ce25e04620d4173748a7d7dd310351bac90eacc (patch) | |
| tree | 01f8aa649eb92ee1c1fc2560468c374c493e3840 /src/abi.c | |
| parent | 52d8eda04d1e2e33bf4c09713d83360453cec435 (diff) | |
| download | qbt-8ce25e04620d4173748a7d7dd310351bac90eacc.tar.gz qbt-8ce25e04620d4173748a7d7dd310351bac90eacc.zip | |
formatting
Diffstat (limited to 'src/abi.c')
| -rw-r--r-- | src/abi.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -44,13 +44,13 @@ static struct insn rewrite_arg(struct insn n) if (n.in[0].class == TMP || n.in[0].class == REG) { n = insn_create(MOVE, I27, nth_ar(nth_arg), n.in[0], - noclass(), 0); + noclass(), 0); set_insn_flags(&n, CALL_SETUP); return n; } else if (n.in[0].class == IMM || n.in[0].class == REF) { n = insn_create(COPY, I27, nth_ar(nth_arg), n.in[0], - noclass(), 0); + noclass(), 0); set_insn_flags(&n, CALL_SETUP); return n; } |
