Skip to content

Commit

Permalink
Move AST nodes to separate directory
Browse files Browse the repository at this point in the history
  • Loading branch information
ceeac committed Jul 2, 2019
1 parent eaba3e3 commit eabb9d8
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 5 deletions.
9 changes: 5 additions & 4 deletions src/boomerang-plugins/codegen/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,15 @@ include_directories(
BOOMERANG_ADD_CODEGEN(
NAME "C"
SOURCES
c/ASTNode.cpp
c/ASTNode.h
c/ast/ASTNode.cpp
c/ast/ASTNode.h
c/ast/StmtASTNode.cpp
c/ast/StmtASTNode.h

c/CCodeGenerator.cpp
c/CCodeGenerator.h
c/CodeWriter.cpp
c/CodeWriter.h
c/ControlFlowAnalyzer.cpp
c/ControlFlowAnalyzer.h
c/StmtASTNode.cpp
c/StmtASTNode.h
)
2 changes: 1 addition & 1 deletion src/boomerang-plugins/codegen/c/ControlFlowAnalyzer.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
#pragma once


#include "StmtASTNode.h"
#include "ast/StmtASTNode.h"

#include <map>
#include <unordered_map>
Expand Down
File renamed without changes.
File renamed without changes.

0 comments on commit eabb9d8

Please sign in to comment.