anwel created this revision.
anwel added reviewers: carwil, amilendra_arm, phosek, michaelplatings, efriedma.
anwel added projects: LLVM, clang.
Herald added subscribers: llvm-commits, cfe-commits, hiraditya, kristof.beyls.
This patch combines two earlier patches aiming at providing the same suppo
anwel updated this revision to Diff 224862.
anwel added a comment.
Applied some minor changes suggested in the comments, including renaming the
array of reserved registers.
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D68862/new/
https://reviews.llvm.org/D68862
Files:
clang/docs/Cla
anwel updated this revision to Diff 227094.
anwel marked 9 inline comments as done.
anwel added a comment.
Rebase and make some variables const
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D68862/new/
https://reviews.llvm.org/D68862
Files:
clang/docs/ClangCommandLineReference.rst
c
anwel added inline comments.
Comment at: clang/lib/Basic/Targets/ARM.cpp:903-907
+ for (std::string &Feature : Features) {
+if (Feature.compare(SearchFeature) == 0)
+ return true;
+ }
+ return false;
chill wrote:
> This explicit loop can be written li
anwel updated this revision to Diff 229269.
anwel added a comment.
Rebase on current llvm-project master
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D68862/new/
https://reviews.llvm.org/D68862
Files:
clang/docs/ClangCommandLineReference.rst
clang/include/clang/Basic/DiagnosticDriv
anwel updated this revision to Diff 229296.
anwel added a comment.
Change clang's error message when trying to use the target's frame pointer as
GRV to sound more like an error then a warning.
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D68862/new/
https://reviews.llvm.org/D68862
Fil
anwel updated this revision to Diff 229531.
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D68862/new/
https://reviews.llvm.org/D68862
Files:
clang/docs/ClangCommandLineReference.rst
clang/include/clang/Basic/DiagnosticDriverKinds.td
clang/include/clang/Basic/DiagnosticGroups.td
cl