Skip to content

Commit

Permalink
Fix previous commit where two lines were commited incorrectly
Browse files Browse the repository at this point in the history
  • Loading branch information
samcv committed May 26, 2018
1 parent 3cf9ae3 commit a8ceea0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build/setup.pm
Expand Up @@ -289,7 +289,7 @@ our %COMPILERS = (
formatattribute => '__attribute__((format(X, Y, Z)))',
expect_likely => '__builtin_expect(!!(condition), 1)',
expect_unlikely => '__builtin_expect(!!(condition), 0)',
expect_condition => '__builtin_expect(!!(condition), (expection))'
expect_condition => '__builtin_expect((condition), (expection))'
},

clang => {
Expand Down Expand Up @@ -317,7 +317,7 @@ our %COMPILERS = (
vectorizerspecifier => '_Pragma ("clang loop vectorize(enable)")',
expect_likely => '__builtin_expect(!!(condition), 1)',
expect_unlikely => '__builtin_expect(!!(condition), 0)',
expect_condition => '__builtin_expect(!!(condition), (expection))'
expect_condition => '__builtin_expect((condition), (expection))'
},

cl => {
Expand Down

0 comments on commit a8ceea0

Please sign in to comment.