Commit 0d7561dd authored by Alastair Robertson's avatar Alastair Robertson

Rename files codegen.* -> codegen_llvm.*

parent d6922022
......@@ -13,7 +13,7 @@ include_directories(${CMAKE_CURRENT_SOURCE_DIR})
include_directories(${LLVM_INCLUDE_DIRS})
add_definitions(${LLVM_DEFINITIONS})
add_executable(bpftrace main.cpp driver.cpp parser.tab.cc lex.yy.cc ast.cpp printer.cpp codegen.cpp map.cpp)
add_executable(bpftrace main.cpp driver.cpp parser.tab.cc lex.yy.cc ast.cpp printer.cpp codegen_llvm.cpp map.cpp)
llvm_map_components_to_libnames(llvm_libs irreader bpfcodegen mcjit)
target_link_libraries(bpftrace ${llvm_libs})
#include "codegen.h"
#include "codegen_llvm.h"
#include "ast.h"
#include "parser.tab.hh"
......
......@@ -3,7 +3,7 @@
#include "driver.h"
#include "printer.h"
#include "codegen.h"
#include "codegen_llvm.h"
#include <llvm/Support/TargetRegistry.h>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment