summaryrefslogtreecommitdiff
path: root/src/jit/emit.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/jit/emit.h')
-rw-r--r--src/jit/emit.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/jit/emit.h b/src/jit/emit.h
index 95dac33536..67adcdf731 100644
--- a/src/jit/emit.h
+++ b/src/jit/emit.h
@@ -1131,6 +1131,7 @@ protected:
bool idIsDspReloc() const { assert(!idIsTiny()); return _idDspReloc != 0; }
void idSetIsDspReloc(bool val = true)
{ assert(!idIsTiny()); _idDspReloc = val; }
+ bool idIsReloc() { return idIsDspReloc() || idIsCnsReloc(); }
#endif