summaryrefslogtreecommitdiff
path: root/libyasm/module.h
diff options
context:
space:
mode:
authorPeter Johnson <peter@tortall.net>2005-10-08 05:45:29 +0000
committerPeter Johnson <peter@tortall.net>2005-10-08 05:45:29 +0000
commit77a535f67371d5bb4c9c146d7f2b6b54d5301d4c (patch)
tree1e279ef4ec687ce1c5b49ce9515085c6b5628fe2 /libyasm/module.h
parentbe801e73db364ee647c1ee1fb605385f839dfc84 (diff)
downloadyasm-77a535f67371d5bb4c9c146d7f2b6b54d5301d4c.tar.gz
Create new working branch for new (Robertson 1977) optimizer.
This doesn't really work yet, which is why it's on a branch! svn path=/branches/new-optimizer/; revision=1269
Diffstat (limited to 'libyasm/module.h')
-rw-r--r--libyasm/module.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/libyasm/module.h b/libyasm/module.h
index 0b07efbb..4606057f 100644
--- a/libyasm/module.h
+++ b/libyasm/module.h
@@ -32,7 +32,6 @@ typedef enum yasm_module_type {
YASM_MODULE_DBGFMT,
YASM_MODULE_OBJFMT,
YASM_MODULE_LISTFMT,
- YASM_MODULE_OPTIMIZER,
YASM_MODULE_PARSER,
YASM_MODULE_PREPROC
} yasm_module_type;
@@ -48,8 +47,6 @@ typedef enum yasm_module_type {
yasm_load_module(YASM_MODULE_OBJFMT, keyword)
#define yasm_load_listfmt(keyword) \
yasm_load_module(YASM_MODULE_LISTFMT, keyword)
-#define yasm_load_optimizer(keyword) \
- yasm_load_module(YASM_MODULE_OPTIMIZER, keyword)
#define yasm_load_parser(keyword) \
yasm_load_module(YASM_MODULE_PARSER, keyword)
#define yasm_load_preproc(keyword) \
@@ -67,8 +64,6 @@ void yasm_list_modules
yasm_list_modules(YASM_MODULE_OBJFMT, func)
#define yasm_list_listfmt(func) \
yasm_list_modules(YASM_MODULE_LISTFMT, func)
-#define yasm_list_optimizer(func) \
- yasm_list_modules(YASM_MODULE_OPTIMIZER, func)
#define yasm_list_parser(func) \
yasm_list_modules(YASM_MODULE_PARSER, func)
#define yasm_list_preproc(func) \