Skip to content

Commit

Permalink
Fix fei issue for clang compiler, fix provided by Mike Glass.
Browse files Browse the repository at this point in the history
  • Loading branch information
alanw0 committed Oct 27, 2020
1 parent 3fdb072 commit 8638389
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions base/fei_EqnCommMgr.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -741,9 +741,9 @@ void EqnCommMgr::exchangeSoln()
}

//------------------------------------------------------------------------------
// This works around an issue with the ARMHPC 20.1 compiler
// This works around an issue with the clang and ARMHPC compiler
// Needs to be revisited with later versions
#ifdef __ARM_HPC_COMPILER_VERSION__
#if defined (__clang__) && ! defined(__INTEL_CLANG_COMPILER)
__attribute__((optnone))
#endif
int EqnCommMgr::mirrorProcEqns(ProcEqns& inProcEqns, ProcEqns& outProcEqns)
Expand Down

0 comments on commit 8638389

Please sign in to comment.