[PATCH] D37055: [ARM] Reverse PostRASched subtarget feature logic
Javed Absar via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Wed Aug 30 06:30:18 PDT 2017
javed.absar added inline comments.
================
Comment at: lib/Target/ARM/ARMSubtarget.cpp:364
return false;
- return (!isThumb() || hasThumb2());
+ return !isThumb1Only();
}
----------------
may be add an explicit comment on why we choose to do this
https://reviews.llvm.org/D37055
More information about the llvm-commits
mailing list