An issue is raised when multiple clocks are used within the same process.
process (clk1, clk2) is -- Noncompliant: Two clocks
begin
if rising_edge(clk1) then
s <= not s;
end if;
if rising_edge(clk2) then
s <= s;
end if;
end process;
process (clk) is -- Compliant: One single clock
begin
if rising_edge(clk) then
s <= not s;
end if;
end process;