Details
Details
- Reviewers
enh pirama srhines asb - Commits
- rGf7623f4f692d: Enable zba and zbs for RISCV64 Android
Diff Detail
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
clang/test/Driver/riscv-features.c | ||
---|---|---|
13 | If the features are adjacent, test them on one line. // ANDROID: "-target-feature" "+zba" "-target-feature" "+zbb" ... |
clang/test/Driver/riscv-features.c | ||
---|---|---|
13 | that's a neat trick. it might work for zba, and zbb. But it could break for zbs if something else comes in between. that will make this test dependent on how flags are sorted internally. probably not worth micro-optimizing for this case. |
If the features are adjacent, test them on one line. // ANDROID: "-target-feature" "+zba" "-target-feature" "+zbb" ...