[PATCH] D39170: [LLD] [COFF] Fix exporting of functions starting with underscores, etc
Rui Ueyama via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Sun Oct 22 17:53:24 PDT 2017
ruiu added inline comments.
================
Comment at: COFF/Driver.cpp:216
+ return Sym.startswith("@") || Sym.contains("@@") || Sym.startswith("?") ||
+ (!Config->MinGW && Sym.contains('@'));
}
----------------
Why is MinGW special?
https://reviews.llvm.org/D39170
More information about the llvm-commits
mailing list