aboutsummaryrefslogtreecommitdiff
path: root/gprof/vax.h
diff options
context:
space:
mode:
authorKen Raeburn <raeburn@cygnus>1995-02-08 02:35:44 +0000
committerKen Raeburn <raeburn@cygnus>1995-02-08 02:35:44 +0000
commit12516a373c27abe4516c2a3c84cfe9d94f02e18f (patch)
tree20c1b81fb9d0ec20120f35bb71eb436f652788c8 /gprof/vax.h
parent28860f46fa46ce73225d72ad6a0f72739ca8295c (diff)
downloadgdb-12516a373c27abe4516c2a3c84cfe9d94f02e18f.zip
gdb-12516a373c27abe4516c2a3c84cfe9d94f02e18f.tar.gz
gdb-12516a373c27abe4516c2a3c84cfe9d94f02e18f.tar.bz2
ran "indent -gnu"; have not fixed block comment style
Diffstat (limited to 'gprof/vax.h')
-rw-r--r--gprof/vax.h29
1 files changed, 15 insertions, 14 deletions
diff --git a/gprof/vax.h b/gprof/vax.h
index a8edc54..69ec9c2 100644
--- a/gprof/vax.h
+++ b/gprof/vax.h
@@ -16,36 +16,37 @@
* IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
*
- * @(#)vax.h 5.4 (Berkeley) 6/1/90
+ * @(#)vax.h 5.4 (Berkeley) 6/1/90
*/
/*
- * opcode of the `calls' instruction
+ * opcode of the `calls' instruction
*/
#define CALLS 0xfb
/*
- * offset (in bytes) of the code from the entry address of a routine.
- * (see asgnsamples for use and explanation.)
+ * offset (in bytes) of the code from the entry address of a routine.
+ * (see asgnsamples for use and explanation.)
*/
#define OFFSET_TO_CODE 2
#define UNITS_TO_CODE (OFFSET_TO_CODE / sizeof(UNIT))
/*
- * register for pc relative addressing
+ * register for pc relative addressing
*/
#define PC 0xf
-enum opermodes {
- literal, indexed, reg, regdef, autodec, autoinc, autoincdef,
+enum opermodes
+ {
+ literal, indexed, reg, regdef, autodec, autoinc, autoincdef,
bytedisp, bytedispdef, worddisp, worddispdef, longdisp, longdispdef,
immediate, absolute, byterel, bytereldef, wordrel, wordreldef,
longrel, longreldef
-};
-typedef enum opermodes operandenum;
-
-struct modebyte {
- unsigned int regfield:4;
- unsigned int modefield:4;
-};
+ };
+typedef enum opermodes operandenum;
+struct modebyte
+ {
+ unsigned int regfield:4;
+ unsigned int modefield:4;
+ };