Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Improve codegen for address pinning.
We avoid one instruction and the memory access. Instead of generating: ``` leaq 0xb98201(%rip), %rax movq %rax, -0x8(%rsp) ``` It now generated just: ``` leaq 0xb981c1(%rip), %rax ``` PiperOrigin-RevId: 589152440
- Loading branch information