summaryrefslogtreecommitdiff
path: root/nasm.c
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@zytor.com>2007-08-30 22:35:34 +0000
committerH. Peter Anvin <hpa@zytor.com>2007-08-30 22:35:34 +0000
commit74cc5e569c1c8bcdd886734e1ce4c2df741b5b07 (patch)
tree65fdefada17611dfd77275edc131c2d2d79d6b10 /nasm.c
parentb1dabe44acca3ff927c024bb7875605a5439346c (diff)
downloadnasm-74cc5e569c1c8bcdd886734e1ce4c2df741b5b07.tar.gz
Finishing touches on perfect hash tokenizer; actually turn the thing on
Finish the perfect hash tokenizer, and actually enable it. Move stdscan() et al to a separate file, since it's not needed in any of the clients of nasmlib other than nasm itself. Run make alldeps.
Diffstat (limited to 'nasm.c')
-rw-r--r--nasm.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/nasm.c b/nasm.c
index 479a3f33..161a2164 100644
--- a/nasm.c
+++ b/nasm.c
@@ -15,6 +15,7 @@
#include "nasm.h"
#include "nasmlib.h"
+#include "stdscan.h"
#include "insns.h"
#include "preproc.h"
#include "parser.h"
@@ -311,7 +312,7 @@ int main(int argc, char **argv)
raa_free(offsets);
saa_free(forwrefs);
eval_cleanup();
- nasmlib_cleanup();
+ stdscan_cleanup();
if (terminate_after_phase)
return 1;