From 4a34d2c55b93d2f1a6e60473e651eed883196976 Mon Sep 17 00:00:00 2001 From: Nick Fitzgerald Date: Mon, 15 Nov 2021 11:14:06 -0800 Subject: [PATCH] Remove old ISLE-generated file --- cranelift/codegen/src/isle.rs | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 cranelift/codegen/src/isle.rs diff --git a/cranelift/codegen/src/isle.rs b/cranelift/codegen/src/isle.rs deleted file mode 100644 index f8794716b9..0000000000 --- a/cranelift/codegen/src/isle.rs +++ /dev/null @@ -1,22 +0,0 @@ -// GENERATED BY ISLE. DO NOT EDIT! -// -// Generated automatically from the instruction-selection DSL code in: -// - src/clif.isle - -#![allow(dead_code, unreachable_code, unreachable_patterns)] -#![allow(unused_imports, unused_variables, non_snake_case)] - -use super::*; // Pulls in all external types. - -/// Context during lowering: an implementation of this trait -/// must be provided with all external constructors and extractors. -/// A mutable borrow is passed along through all lowering logic. -pub trait Context { - fn value_list_slice(&mut self, arg0: &ValueList) -> (ValueSlice,); - fn unwrap_head_value_list_1(&mut self, arg0: &ValueList) -> (Value, ValueSlice,); - fn unwrap_head_value_list_2(&mut self, arg0: &ValueList) -> (Value, Value, ValueSlice,); - fn pack_value_array_2(&mut self, arg0: Value, arg1: Value) -> (ValueArray2,); - fn unpack_value_array_2(&mut self, arg0: &ValueArray2) -> (Value, Value,); - fn pack_value_array_3(&mut self, arg0: Value, arg1: Value, arg2: Value) -> (ValueArray3,); - fn unpack_value_array_3(&mut self, arg0: &ValueArray3) -> (Value, Value, Value,); -}