aboutsummaryrefslogtreecommitdiff
path: root/gas/config/obj-generic.h
diff options
context:
space:
mode:
authorK. Richard Pixley <rich@cygnus>1992-02-13 08:33:54 +0000
committerK. Richard Pixley <rich@cygnus>1992-02-13 08:33:54 +0000
commita39116f1c91d3642c068d9df871338cca9006be2 (patch)
treedbd53d94ef859ca6425ef5370573030d4766161b /gas/config/obj-generic.h
parent77806c3e79cc6ebd5ab62ce46f7cdeecad50ca52 (diff)
downloadgdb-a39116f1c91d3642c068d9df871338cca9006be2.zip
gdb-a39116f1c91d3642c068d9df871338cca9006be2.tar.gz
gdb-a39116f1c91d3642c068d9df871338cca9006be2.tar.bz2
White space and comments only. The devo tree prior to this delta is
tagged as "vanilla" for your convenience. There are also some comment changes.
Diffstat (limited to 'gas/config/obj-generic.h')
-rw-r--r--gas/config/obj-generic.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/gas/config/obj-generic.h b/gas/config/obj-generic.h
index d9e03dc..69bf1f3 100644
--- a/gas/config/obj-generic.h
+++ b/gas/config/obj-generic.h
@@ -3,10 +3,10 @@
* object format specific header files.
*/
- /* define an obj specific macro off which target cpu back ends may key. */
+/* define an obj specific macro off which target cpu back ends may key. */
#define OBJ_GENERIC 1
- /* include whatever target cpu is appropriate. */
+/* include whatever target cpu is appropriate. */
#include "targ-cpu.h"
/*
@@ -21,29 +21,29 @@
* facilities are available, and they are macros.
*/
- /* #define SYMBOLS_NEED_PACKPOINTERS */
+/* #define SYMBOLS_NEED_PACKPOINTERS */
- /* */
+/* */
typedef struct {
void *nothing;
} obj_symbol_type; /* should be the format's symbol structure */
typedef void *object_headers;
- /* symbols have names */
+/* symbols have names */
#define S_GET_NAME(s) ("foo") /* get the name of a symbolP */
#define S_SET_NAME(s,v) ;
- /* symbols have segments */
+ /* symbols have segments */
#define S_GET_SEGMENT(s) (SEG_UNKNOWN)
#define S_SET_SEGMENT(s,v) ;
- /* symbols have a value */
+ /* symbols have a value */
#define S_GET_VALUE(s) (0)
#define S_SET_VALUE(s,v) ;
- /* symbols may be external */
+ /* symbols may be external */
#define S_IS_EXTERNAL(s) (0)
#define S_SET_EXTERNAL(s) ;
-
- /* symbols may or may not be defined */
+
+ /* symbols may or may not be defined */
#define S_IS_DEFINED(s) (0)