diff options
Diffstat (limited to 'gas/config/tc-tic4x.c')
-rw-r--r-- | gas/config/tc-tic4x.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gas/config/tc-tic4x.c b/gas/config/tc-tic4x.c index 478a04e675c..e77661b8b4c 100644 --- a/gas/config/tc-tic4x.c +++ b/gas/config/tc-tic4x.c @@ -1285,8 +1285,8 @@ tic4x_inst_add (const tic4x_inst_t *insts) d = name; /* We do not care about INSNs that is not a part of our - oplevel setting */ - if (!insts->oplevel & tic4x_oplevel) + oplevel setting. */ + if ((insts->oplevel & tic4x_oplevel) == 0) return ok; while (1) |