/*
 * Copyright (c) Meta Platforms, Inc. and affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

mod eliminate_redundant_phis;
mod enter;
mod leave;

pub use eliminate_redundant_phis::eliminate_redundant_phis;
pub use enter::enter_ssa;
pub use leave::leave_ssa;