Skip to content

Commit

Permalink
Enable SSE3 feature check which will be required for FP calculations
Browse files Browse the repository at this point in the history
Signed-off-by: BradleyWood <bradley.wood@ibm.com>
  • Loading branch information
BradleyWood committed Jun 9, 2021
1 parent 059eeca commit dcfb579
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions compiler/env/ProcessorInfo.hpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright (c) 2000, 2020 IBM Corp. and others
* Copyright (c) 2000, 2021 IBM Corp. and others
*
* This program and the accompanying materials are made available under
* the terms of the Eclipse Public License 2.0 which accompanies this
Expand Down Expand Up @@ -136,7 +136,8 @@ enum TR_X86ProcessorFeatures2

inline uint32_t getFeatureFlags2Mask()
{
return TR_SSSE3
return TR_SSE3
| TR_SSSE3
| TR_SSE4_1
| TR_POPCNT
| TR_AESNI
Expand Down

0 comments on commit dcfb579

Please sign in to comment.