| OLD | NEW |
| 1 /* Definition of agent opcode values. -*- c -*- | 1 /* Definition of agent opcode values. -*- c -*- |
| 2 Copyright (C) 1998-2000, 2007-2012 Free Software Foundation, Inc. | 2 Copyright (C) 1998-2000, 2007-2012 Free Software Foundation, Inc. |
| 3 | 3 |
| 4 This file is part of GDB. | 4 This file is part of GDB. |
| 5 | 5 |
| 6 This program is free software; you can redistribute it and/or modify | 6 This program is free software; you can redistribute it and/or modify |
| 7 it under the terms of the GNU General Public License as published by | 7 it under the terms of the GNU General Public License as published by |
| 8 the Free Software Foundation; either version 3 of the License, or | 8 the Free Software Foundation; either version 3 of the License, or |
| 9 (at your option) any later version. | 9 (at your option) any later version. |
| 10 | 10 |
| (...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 86 DEFOP (setv, 2, 0, 0, 1, 0x2d) | 86 DEFOP (setv, 2, 0, 0, 1, 0x2d) |
| 87 DEFOP (tracev, 2, 0, 0, 1, 0x2e) | 87 DEFOP (tracev, 2, 0, 0, 1, 0x2e) |
| 88 DEFOP (tracenz, 0, 0, 2, 0, 0x2f) | 88 DEFOP (tracenz, 0, 0, 2, 0, 0x2f) |
| 89 DEFOP (trace16, 2, 0, 1, 1, 0x30) | 89 DEFOP (trace16, 2, 0, 1, 1, 0x30) |
| 90 /* We need something here just to make the tables come out ok. */ | 90 /* We need something here just to make the tables come out ok. */ |
| 91 DEFOP (invalid2, 0, 0, 0, 0, 0x31) | 91 DEFOP (invalid2, 0, 0, 0, 0, 0x31) |
| 92 /* The "consumed" number for pick is wrong, but there's no way to | 92 /* The "consumed" number for pick is wrong, but there's no way to |
| 93 express the right thing. */ | 93 express the right thing. */ |
| 94 DEFOP (pick, 1, 0, 0, 1, 0x32) | 94 DEFOP (pick, 1, 0, 0, 1, 0x32) |
| 95 DEFOP (rot, 0, 0, 3, 3, 0x33) | 95 DEFOP (rot, 0, 0, 3, 3, 0x33) |
| 96 /* Both the argument and consumed numbers are dynamic for this one. */ |
| 97 DEFOP (printf, 0, 0, 0, 0, 0x34) |
| OLD | NEW |