[PATCH] D31972: Do not force the frame pointer by default for ARM EABI
Eli Friedman via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Wed May 31 11:10:30 PDT 2017
efriedma added reviewers: t.p.northover, efriedma.
efriedma added inline comments.
================
Comment at: lib/Driver/ToolChains/Clang.cpp:569
+ if (Triple.getEnvironment() == llvm::Triple::EABI) {
+ switch (Triple.getArch()) {
----------------
Specifically checking for "llvm::Triple::EABI" is suspicious... what are you trying to distinguish?
https://reviews.llvm.org/D31972
More information about the cfe-commits
mailing list