Skip to content
Snippets Groups Projects

Basic IR schedules framework

Merged rarbore2 requested to merge schedules into main
7 files
+ 451
59
Compare changes
  • Side-by-side
  • Inline
Files
7
+ 2
1
@@ -857,10 +857,10 @@ impl Node {
self.is_start()
|| self.is_region()
|| self.is_if()
|| self.is_match()
|| self.is_fork()
|| self.is_join()
|| self.is_return()
|| self.is_return()
}
pub fn upper_case_name(&self) -> &'static str {
@@ -1078,6 +1078,7 @@ impl TernaryOperator {
* Rust things to make newtyped IDs usable.
*/
#[macro_export]
macro_rules! define_id_type {
($x: ident) => {
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash, PartialOrd, Ord)]
Loading