Update skeleton

This commit is contained in:
Jeehoon Kang
2020-05-02 07:52:40 +00:00
parent 3bef06455e
commit f4dc5e426c
11 changed files with 142 additions and 15 deletions

View File

@@ -1,7 +1,7 @@
use crate::opt::FunctionPass;
use crate::*;
pub type Gvn = FunctionPass<Repeat<GvnInner>>;
pub type Gvn = FunctionPass<GvnInner>;
#[derive(Default)]
pub struct GvnInner {}

View File

@@ -0,0 +1,3 @@
//! Utilities for implementing optimizations.
//!
//! You can add here utilities commonly used in the implementation of multiple optimizations.