summaryrefslogtreecommitdiff
path: root/splint.sh
diff options
context:
space:
mode:
authorPeter Johnson <peter@tortall.net>2001-11-26 17:37:09 +0000
committerPeter Johnson <peter@tortall.net>2001-11-26 17:37:09 +0000
commitce4a5fe02aec3606740195e334f3dd3a34d7857d (patch)
treed4038fb29276ae8501cc5097e5efc444aa400c93 /splint.sh
parent41d256accc5665599aa8476d5321af26778b0003 (diff)
downloadyasm-ce4a5fe02aec3606740195e334f3dd3a34d7857d.tar.gz
Switch from using ternary tree to Hash Array Mapped Trie (HAMT), which has
*much* less overhead. XXX: current implementation of HAMT is *not* portable due to pointer alignment restrictions (it uses the LSB of a pointer to store a flag). Need to write a portable (if not so space-efficient) equivalent. svn path=/trunk/yasm/; revision=363
Diffstat (limited to 'splint.sh')
-rwxr-xr-xsplint.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/splint.sh b/splint.sh
index 607bdf75..559fdf3e 100755
--- a/splint.sh
+++ b/splint.sh
@@ -1,2 +1,2 @@
#!/bin/sh
-lclint -exportlocal -predbool -boolops +boolint +charint -retvalint -retvalother +ansilimits -I/usr/local/include -I.. -Iarch/x86 -I. -DHAVE_CONFIG_H -DHAVE_BOGUS_SYS_QUEUE_H -Dlint main.c options.c arch.c bytecode.c errwarn.c expr.c file.c floatnum.c globals.c intnum.c parser.c section.c arch/x86/arch.c arch/x86/bytecode.c arch/x86/expr.c objfmts/dbg/objfmt.c parsers/nasm/parser.c preprocs/raw/preproc.c parsers/nasm/bison.c symrec.c ternary.c
+lclint -exportlocal -predbool -boolops +boolint +charint -retvalint -retvalother +ansilimits -I/usr/local/include -I.. -Iarch/x86 -I. -DHAVE_CONFIG_H -DHAVE_BOGUS_SYS_QUEUE_H -Dlint main.c options.c arch.c bytecode.c errwarn.c expr.c file.c floatnum.c globals.c intnum.c parser.c section.c arch/x86/arch.c arch/x86/bytecode.c arch/x86/expr.c objfmts/dbg/objfmt.c parsers/nasm/parser.c preprocs/raw/preproc.c parsers/nasm/bison.c symrec.c hamt.c