diff --git a/reid-llvm-lib/src/builder.rs b/reid-llvm-lib/src/builder.rs index c3ed463..0b12479 100644 --- a/reid-llvm-lib/src/builder.rs +++ b/reid-llvm-lib/src/builder.rs @@ -3,8 +3,6 @@ use std::{cell::RefCell, rc::Rc}; -use llvm_sys::core::LLVMBuildArrayAlloca; - use crate::{ BlockData, ConstValue, FunctionData, Instr, InstructionData, ModuleData, TerminatorKind, Type, util::match_types, diff --git a/reid/src/mir/types.rs b/reid/src/mir/types.rs index a0573c7..c96228d 100644 --- a/reid/src/mir/types.rs +++ b/reid/src/mir/types.rs @@ -1,5 +1,3 @@ -use crate::ast::VariableReference; - use super::*; #[derive(Debug, Clone)]