aboutsummaryrefslogtreecommitdiff
path: root/gdb/m2-exp.y
diff options
context:
space:
mode:
authorJan Kratochvil <jan.kratochvil@redhat.com>2009-05-21 14:38:20 +0000
committerJan Kratochvil <jan.kratochvil@redhat.com>2009-05-21 14:38:20 +0000
commitc244a140a5886ace48a9c18ebf9f268a0280f99b (patch)
treec58860bd9a1cc389eaf299113e8f700f2aeaf04d /gdb/m2-exp.y
parent930e005c64bf4473e395dffed9bab1c5d6dcba49 (diff)
downloadfsf-binutils-gdb-c244a140a5886ace48a9c18ebf9f268a0280f99b.zip
fsf-binutils-gdb-c244a140a5886ace48a9c18ebf9f268a0280f99b.tar.gz
fsf-binutils-gdb-c244a140a5886ace48a9c18ebf9f268a0280f99b.tar.bz2
gdb/
* m2-exp.y (MAX_FUNC): Fix trailing UNOP_MAX.
Diffstat (limited to 'gdb/m2-exp.y')
-rw-r--r--gdb/m2-exp.y2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/m2-exp.y b/gdb/m2-exp.y
index 41271b7..0c3c657 100644
--- a/gdb/m2-exp.y
+++ b/gdb/m2-exp.y
@@ -265,7 +265,7 @@ exp : MIN_FUNC '(' type ')'
exp : MAX_FUNC '(' type ')'
{ write_exp_elt_opcode (UNOP_MAX);
write_exp_elt_type ($3);
- write_exp_elt_opcode (UNOP_MIN); }
+ write_exp_elt_opcode (UNOP_MAX); }
;
exp : FLOAT_FUNC '(' exp ')'