Skip to content

Commit

Permalink
Remove tests
Browse files Browse the repository at this point in the history
  • Loading branch information
raviqqe committed Sep 30, 2023
1 parent 3e34bf3 commit b87fd60
Showing 1 changed file with 0 additions and 22 deletions.
22 changes: 0 additions & 22 deletions melior/src/dialect/llvm/type.rs
Original file line number Diff line number Diff line change
Expand Up @@ -78,28 +78,6 @@ mod tests {
);
}

#[test]
fn pointer() {
let context = create_context();
let i32 = IntegerType::new(&context, 32).into();

assert_eq!(
super::pointer(i32, 0),
Type::parse(&context, "!llvm.ptr<i32>").unwrap()
);
}

#[test]
fn pointer_with_address_space() {
let context = create_context();
let i32 = IntegerType::new(&context, 32).into();

assert_eq!(
super::pointer(i32, 4),
Type::parse(&context, "!llvm.ptr<i32, 4>").unwrap()
);
}

#[test]
fn void() {
let context = create_context();
Expand Down

0 comments on commit b87fd60

Please sign in to comment.