Skip to content

Commit 645aa27

Browse files
committed
change the operator name (asm -> __emit)
1 parent ea8a775 commit 645aa27

File tree

5 files changed

+230
-230
lines changed

5 files changed

+230
-230
lines changed

source/compiler/sc.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -339,7 +339,7 @@ typedef struct s_valuepair {
339339
#define tDBLDOT 279 /* .. */
340340
#define tDBLCOLON 280 /* :: */
341341
/* reserved words (statements) */
342-
#define tASM 281
342+
#define tEMIT 281
343343
#define tASSERT 282
344344
#define tBEGIN 283
345345
#define tBREAK 284
@@ -552,7 +552,7 @@ SC_FUNC symbol *add_builtin_constant(char *name,cell val,int vclass,int tag);
552552
SC_FUNC symbol *add_builtin_string_constant(char *name,const char *val,int vclass);
553553
SC_FUNC void exporttag(int tag);
554554
SC_FUNC void sc_attachdocumentation(symbol *sym);
555-
SC_FUNC void asm_parse_line(void);
555+
SC_FUNC void emit_parse_line(void);
556556

557557
/* function prototypes in SC2.C */
558558
#define PUSHSTK_P(v) { stkitem s_; s_.pv=(v); pushstk(s_); }
@@ -855,7 +855,7 @@ SC_VDECL FILE *outf; /* file written to */
855855

856856
SC_VDECL jmp_buf errbuf; /* target of longjmp() on a fatal error */
857857

858-
SC_VDECL int asm_block_parsing;
858+
SC_VDECL int emit_block_parsing;
859859

860860
#if !defined SC_LIGHT
861861
SC_VDECL int sc_makereport; /* generate a cross-reference report */

0 commit comments

Comments
 (0)