| OLD | NEW |
| 1 /* Ada language operator definitions for GDB, the GNU debugger. | 1 /* Ada language operator definitions for GDB, the GNU debugger. |
| 2 | 2 |
| 3 Copyright (C) 1992, 1997-2005, 2007-2012 Free Software Foundation, | 3 Copyright (C) 1992-2013 Free Software Foundation, Inc. |
| 4 Inc. | |
| 5 | 4 |
| 6 This file is part of GDB. | 5 This file is part of GDB. |
| 7 | 6 |
| 8 This program is free software; you can redistribute it and/or modify | 7 This program is free software; you can redistribute it and/or modify |
| 9 it under the terms of the GNU General Public License as published by | 8 it under the terms of the GNU General Public License as published by |
| 10 the Free Software Foundation; either version 3 of the License, or | 9 the Free Software Foundation; either version 3 of the License, or |
| 11 (at your option) any later version. | 10 (at your option) any later version. |
| 12 | 11 |
| 13 This program is distributed in the hope that it will be useful, | 12 This program is distributed in the hope that it will be useful, |
| 14 but WITHOUT ANY WARRANTY; without even the implied warranty of | 13 but WITHOUT ANY WARRANTY; without even the implied warranty of |
| (...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 90 | 89 |
| 91 /* A positional aggregate component association. The operator is | 90 /* A positional aggregate component association. The operator is |
| 92 followed by a single integer indicating the position in the | 91 followed by a single integer indicating the position in the |
| 93 aggregate (0-based), followed by a second OP_POSITIONAL. Next | 92 aggregate (0-based), followed by a second OP_POSITIONAL. Next |
| 94 follows a single expression giving the component value. */ | 93 follows a single expression giving the component value. */ |
| 95 OP (OP_POSITIONAL) | 94 OP (OP_POSITIONAL) |
| 96 | 95 |
| 97 /* A range of values. Followed by two expressions giving the | 96 /* A range of values. Followed by two expressions giving the |
| 98 upper and lower bounds of the range. */ | 97 upper and lower bounds of the range. */ |
| 99 OP (OP_DISCRETE_RANGE) | 98 OP (OP_DISCRETE_RANGE) |
| OLD | NEW |