diff options
| author | Quentin Carbonneaux <[email protected]> | 2016-04-08 09:47:00 -0400 |
|---|---|---|
| committer | Quentin Carbonneaux <[email protected]> | 2016-04-08 09:47:00 -0400 |
| commit | 206a0e55ba61f28386590a58f53eca49a616e2ce (patch) | |
| tree | 744e30b191fb58e52d713c26339035c52eb0099e /emit.c | |
| parent | 15cee065a57ed7c7f5272bb6b60f7518121ec4da (diff) | |
avoid gcc warning in emit
Diffstat (limited to 'emit.c')
| -rw-r--r-- | emit.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -249,9 +249,10 @@ Next: case '=': sz = KWIDE(i->cls) ? SLong : SWord; s--; - /* fall through */ + goto Ref; case 'D': case 'S': + sz = SLong; /* does not matter for floats */ Ref: c = *s++; ref = getarg(c, i); |
