[PATCH] D42358: [X86][x32] Save callee-save register used as base pointer for x32 ABI

Derek Schuff via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Fri Mar 2 09:44:49 PST 2018


dschuff added inline comments.


================
Comment at: test/CodeGen/X86/x86-64-baseptr.ll:56
 ; X32ABI-NEXT:    movl $0, (%ecx,%eax)
 ; X32ABI-NEXT:    movl %ebp, %esp
 ; X32ABI-NEXT:    popq %rbp
----------------
Actually the epilog needs to be updated in the test too. It's now
```
leal	-8(%ebp), %esp
	popq	%rbx
	popq	%rbp
```



Repository:
  rL LLVM

https://reviews.llvm.org/D42358





More information about the llvm-commits mailing list