From 47c9021401a69d407a3e730012824cae75dd66f9 Mon Sep 17 00:00:00 2001 From: Alon Zakai Date: Tue, 24 Oct 2017 20:36:28 -0700 Subject: notation change: AST => IR (#1245) The IR is indeed a tree, but not an "abstract syntax tree" since there is no language for which it is the syntax (except in the most trivial and meaningless sense). --- src/tools/wasm-ctor-eval.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/tools/wasm-ctor-eval.cpp') diff --git a/src/tools/wasm-ctor-eval.cpp b/src/tools/wasm-ctor-eval.cpp index dc9b15144..631966d40 100644 --- a/src/tools/wasm-ctor-eval.cpp +++ b/src/tools/wasm-ctor-eval.cpp @@ -31,10 +31,10 @@ #include "wasm-io.h" #include "wasm-interpreter.h" #include "wasm-builder.h" -#include "ast/memory-utils.h" -#include "ast/global-utils.h" -#include "ast/import-utils.h" -#include "ast/literal-utils.h" +#include "ir/memory-utils.h" +#include "ir/global-utils.h" +#include "ir/import-utils.h" +#include "ir/literal-utils.h" using namespace wasm; -- cgit v1.2.3