From baaa9822b9f9e13a60134a32351f1cade2793ba1 Mon Sep 17 00:00:00 2001 From: Vaivaswatha Nagaraj Date: Thu, 20 Jun 2024 09:01:08 +0530 Subject: [PATCH] temporarily remove callsite test --- tests/all/test_instruction_values.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/tests/all/test_instruction_values.rs b/tests/all/test_instruction_values.rs index ae9f85a95b0..991b027092f 100644 --- a/tests/all/test_instruction_values.rs +++ b/tests/all/test_instruction_values.rs @@ -340,8 +340,6 @@ fn test_instructions() { assert!(!store_instruction.is_conditional()); assert!(!return_instruction.is_conditional()); assert!(cond_br_instruction.is_conditional()); - assert!(TryInto::::try_into(free_instruction).is_ok()); - assert!(TryInto::::try_into(return_instruction).is_err()); assert_eq!(store_instruction.get_opcode(), Store); assert_eq!(ptr_val.as_instruction().unwrap().get_opcode(), PtrToInt); assert_eq!(ptr.as_instruction().unwrap().get_opcode(), IntToPtr);