diff options
| author | 2023-06-12 12:44:00 +0200 | |
|---|---|---|
| committer | 2023-06-12 12:44:00 +0200 | |
| commit | 22a9d90ba60f1d8142c3975dff521929bdf05ce8 (patch) | |
| tree | 2531f609f2a1c2784a7dea79e51a8322d76dc7ed /amd64 | |
| parent | 984b74da895d7155f68434be9cc9b6d49a77abec (diff) | |
something with phi
Diffstat (limited to 'amd64')
| -rw-r--r-- | amd64/isel.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/amd64/isel.c b/amd64/isel.c index e6cc692..8ab11a7 100644 --- a/amd64/isel.c +++ b/amd64/isel.c @@ -6,7 +6,7 @@ static void fixarg(struct function *fn, union ref *r, struct instr *ins, struct block *blk, int *curi) { int sh; - enum op op = ins->op; + enum op op = ins ? ins->op : 0; if (r->t == RXCON) { struct xcon *con = &conht[r->i]; |