Skip to content

Commit

Permalink
initializing llvm
Browse files Browse the repository at this point in the history
  • Loading branch information
orzklv committed Aug 3, 2024
1 parent 6d471bf commit f92d398
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
14 changes: 14 additions & 0 deletions src/backend/llvm.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
use crate::Context as CContext;

use crate::{
str,
syntax::ast::{
Elem, Expr, ExprKind, Function, NodeId, Stmt, StmtKind, StructArg, StructField, Type,
},
};

use crate::syntax::interner::Name;
use std::{
collections::{HashMap, VecDeque},
ffi::CString,
};
1 change: 1 addition & 0 deletions src/backend/mod.rs
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
pub mod ast2cpp;
pub mod gccjit;
pub mod llvm;

0 comments on commit f92d398

Please sign in to comment.