Why is this an issue?

Enable signals should not be reused in a non-enable way.

How to fix it

Code examples

Noncompliant code example

process(clk) is
begin
  if rising_edge(clk) then
    if enable = '1' then
      o1 <= i1;
      o2 <= enable; -- Noncompliant: 'enable' enable signal is reused in a non-enable way
    end if;
  end if;
end process;

Compliant solution

process(clk) is
begin
  if rising_edge(clk) then
    if enable = '1' then
      o1 <= i1;
    end if;
  end if;
end process;