From e5253edecdb96d765d5cd6bb4ed8fc21ca33285b Mon Sep 17 00:00:00 2001 From: Yota Toyama Date: Sat, 7 Dec 2024 14:41:27 +0900 Subject: [PATCH] Format files --- melior/src/helpers/arith.rs | 5 +---- melior/src/helpers/builtin.rs | 5 ++--- melior/src/helpers/llvm.rs | 5 +---- 3 files changed, 4 insertions(+), 11 deletions(-) diff --git a/melior/src/helpers/arith.rs b/melior/src/helpers/arith.rs index 595e213cb5..dbe050af67 100644 --- a/melior/src/helpers/arith.rs +++ b/melior/src/helpers/arith.rs @@ -7,10 +7,7 @@ use crate::{ }, ods, }, - ir::{ - r#type::IntegerType, - Attribute, Block, Location, Type, Value, - }, + ir::{r#type::IntegerType, Attribute, Block, Location, Type, Value}, Context, Error, }; use core::fmt; diff --git a/melior/src/helpers/builtin.rs b/melior/src/helpers/builtin.rs index b7c5e05220..6a1049f5c5 100644 --- a/melior/src/helpers/builtin.rs +++ b/melior/src/helpers/builtin.rs @@ -1,7 +1,6 @@ use crate::{ - ir::{ - Block, Operation, Value, - }, Error, + ir::{Block, Operation, Value}, + Error, }; pub trait BuiltinBlockExt<'c> { diff --git a/melior/src/helpers/llvm.rs b/melior/src/helpers/llvm.rs index 558e1415b1..a5fc47bb65 100644 --- a/melior/src/helpers/llvm.rs +++ b/melior/src/helpers/llvm.rs @@ -1,10 +1,7 @@ use super::arith::ArithBlockExt; use super::builtin::BuiltinBlockExt; use crate::{ - dialect::{ - llvm::r#type::pointer, - ods, - }, + dialect::{llvm::r#type::pointer, ods}, ir::{ attribute::{ DenseI32ArrayAttribute, DenseI64ArrayAttribute, IntegerAttribute, TypeAttribute,