Conditional Expressions Rules
conditional_expressions_100
This rule checks for a single space before the when keyword.
Refer to Configuring Whitespace Rules for options on changing the number of whitespaces..
Violation
wr_en <= '0'when (rd_en = '0') else '1';
Fix
wr_en <= '0' when (rd_en = '0') else '1';
conditional_expressions_101
This rule checks for a single space after the when keyword.
Refer to Configuring Whitespace Rules for options on changing the number of whitespaces..
Violation
wr_en <= '0' when(rd_en = '0') else '1';
Fix
wr_en <= '0' when (rd_en = '0') else '1';
conditional_expressions_102
This rule checks for a single space before the else keyword.
Refer to Configuring Whitespace Rules for options on changing the number of whitespaces..
Violation
wr_en <= '0' when (rd_en = '0')else '1';
Fix
wr_en <= '0' when (rd_en = '0') else '1';
conditional_expressions_103
This rule checks for a single space after the else keyword.
Refer to Configuring Whitespace Rules for options on changing the number of whitespaces..
Violation
wr_en <= '0' when (rd_en = '0') else'1';
Fix
wr_en <= '0' when (rd_en = '0') else '1';
conditional_expressions_500
This rule checks the when keyword has proper case.
Refer to Configuring Uppercase and Lowercase Rules for more information.
Violation
wr_en <= '0' WHEN (rd_en = '0') else '1';
Fix
wr_en <= '0' when (rd_en = '0') else '1';
conditional_expressions_501
This rule checks the else keyword has proper case.
Refer to Configuring Uppercase and Lowercase Rules for more information.
Violation
wr_en <= '0' when (rd_en = '0') ELSE '1';
Fix
wr_en <= '0' when (rd_en = '0') else '1';