From c0487efba2016440466e404a93b46d5aa4d212f5 Mon Sep 17 00:00:00 2001 From: Paul Rigge Date: Thu, 18 Jul 2024 15:18:00 -0700 Subject: [PATCH] Remove warning about proc inlining now that we have multi-proc codegen. PiperOrigin-RevId: 653771738 --- xls/passes/channel_legalization_pass.cc | 6 ------ 1 file changed, 6 deletions(-) diff --git a/xls/passes/channel_legalization_pass.cc b/xls/passes/channel_legalization_pass.cc index 9ad338e520..35ea101016 100644 --- a/xls/passes/channel_legalization_pass.cc +++ b/xls/passes/channel_legalization_pass.cc @@ -1073,12 +1073,6 @@ absl::StatusOr ChannelLegalizationPass::RunInternal( channel_name_uniquer)); changed = true; } - // If we've added an adapter, we likely want to inline it. - // TODO(google/xls#950): remove this warning when multi-proc codegen is an - // option. - LOG_IF(ERROR, changed && !options.inline_procs) - << "An adapter proc was added, but proc inlining has not been enabled. " - "You likely want to inline the new proc!"; return changed; }