aboutsummaryrefslogtreecommitdiff
path: root/tcc.h
diff options
context:
space:
mode:
Diffstat (limited to 'tcc.h')
-rw-r--r--tcc.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/tcc.h b/tcc.h
index 394b6ab..06b80fe 100644
--- a/tcc.h
+++ b/tcc.h
@@ -434,12 +434,13 @@ typedef struct AttributeDef {
struct Attribute a;
struct Section *section;
int alias_target; /* token */
+ int asm_label; /* associated asm label */
} AttributeDef;
/* symbol management */
typedef struct Sym {
int v; /* symbol token */
- char *asm_label; /* associated asm label */
+ int asm_label; /* associated asm label */
union {
long r; /* associated register */
struct Attribute a;