Details
Details
Diff Detail
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
llvm/lib/Target/RISCV/RISCVISelLowering.cpp | ||
---|---|---|
321 | I think you should add static here. It will prevent FPLegalNodeTypes from being created as a local variable on the stack which requires initialization code. Making it static will put it in the .rodata section instead. |
I think you should add static here. It will prevent FPLegalNodeTypes from being created as a local variable on the stack which requires initialization code. Making it static will put it in the .rodata section instead.