[PATCH] D41160: [LLD] [COFF] Sort .pdata for arm64
Saleem Abdulrasool via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Wed Dec 13 09:46:07 PST 2017
compnerd added inline comments.
================
Comment at: COFF/Writer.cpp:886
}
if (Config->Machine == ARMNT) {
struct Entry { ulittle32_t Begin, Unwind; };
----------------
Why not just do:
if (Config->Machine == ARMNT || Config->Machine == ARM64) {
Repository:
rLLD LLVM Linker
https://reviews.llvm.org/D41160
More information about the llvm-commits
mailing list