diff options
author | Nick Clifton <nickc@redhat.com> | 2000-02-28 17:57:40 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2000-02-28 17:57:40 +0000 |
commit | 77343c58f9a67ff5a644d6ecc1eb8ef5ba87f45a (patch) | |
tree | bb89ac82dc1813196669de9a2e38eba343563f8a /opcodes/m32r-desc.c | |
parent | aaddd1abf20f0485951bf49b9db3458a61ac9fd7 (diff) | |
download | gdb-77343c58f9a67ff5a644d6ecc1eb8ef5ba87f45a.zip gdb-77343c58f9a67ff5a644d6ecc1eb8ef5ba87f45a.tar.gz gdb-77343c58f9a67ff5a644d6ecc1eb8ef5ba87f45a.tar.bz2 |
Replace 'flags' with 'signed_overflow_ok_p'
Diffstat (limited to 'opcodes/m32r-desc.c')
-rw-r--r-- | opcodes/m32r-desc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/opcodes/m32r-desc.c b/opcodes/m32r-desc.c index 1502e74..360c38f 100644 --- a/opcodes/m32r-desc.c +++ b/opcodes/m32r-desc.c @@ -1339,7 +1339,7 @@ m32r_cgen_cpu_open (enum cgen_cpu_open_arg arg_type, ...) m32r_cgen_rebuild_tables (cd); /* Initialise flags. */ - cd->flags = 0; + cd->signed_overflow_ok_p = 0; return (CGEN_CPU_DESC) cd; } |