Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update src/coreclr/jit/helperexpansion.cpp
Co-authored-by: Bruce Forstall <[email protected]>
  • Loading branch information
kunalspathak and BruceForstall authored Apr 18, 2023
commit 0316ac410e7f06eae62ba6a3b40c544bcc0b309a
2 changes: 1 addition & 1 deletion src/coreclr/jit/helperexpansion.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -464,7 +464,7 @@ bool Compiler::fgExpandThreadLocalAccessForCall(BasicBlock* block, Statement* st
// On Arm, Thread execution blocks are accessed using co-processor registers and instructions such
// as MRC and MCR are used to access them. We do not support them and so should never optimize the
// field access using TLS.
assert("Unsupported scenario of optimizing TLS access on Arm32");
assert(!"Unsupported scenario of optimizing TLS access on Arm32");
#endif

CORINFO_THREAD_STATIC_BLOCKS_INFO threadStaticBlocksInfo;
Expand Down