Skip to content

Commit

Permalink
Fixing opts.setSupportedISAs to use the computed instructionSetFlags …
Browse files Browse the repository at this point in the history
…value (#34139)
  • Loading branch information
tannergooding committed Mar 26, 2020
1 parent aced6b0 commit 12e77a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/coreclr/src/jit/compiler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2352,7 +2352,7 @@ void Compiler::compSetProcessor()
#endif

instructionSetFlags = EnsureInstructionSetFlagsAreValid(instructionSetFlags);
opts.setSupportedISAs(jitFlags.GetInstructionSetFlags());
opts.setSupportedISAs(instructionSetFlags);

#ifdef TARGET_XARCH
if (!compIsForInlining())
Expand Down

0 comments on commit 12e77a6

Please sign in to comment.