Pragma Rules

pragma_300

phase_4 error indent

This rule checks the indent of pragmas.

Refer to Configuring Pragmas for information on how to configure detecting of pragmas.

Violation

architecture rtl of fifo is

  -- synthesis translate_off
  signal wr_en : std_logic;
  signal rd_en : std_Logic;
  -- synthesis translate_on

begin

Fix

architecture rtl of fifo is

  -- synthesis translate_off
  signal wr_en : std_logic;
  signal rd_en : std_Logic;
-- synthesis translate_on

begin