diff options
author | Craig Topper <craig.topper@sifive.com> | 2024-10-29 18:08:26 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-29 18:08:26 -0700 |
commit | d9268289c3858c4ae877ff3bb90f28c160a977c8 (patch) | |
tree | 77486202339265039f265d684588957995327b21 | |
parent | 13a3c4f97cf33279d597148ec48c71337aa16e9a (diff) | |
download | llvm-d9268289c3858c4ae877ff3bb90f28c160a977c8.zip llvm-d9268289c3858c4ae877ff3bb90f28c160a977c8.tar.gz llvm-d9268289c3858c4ae877ff3bb90f28c160a977c8.tar.bz2 |
[RISCV] Add sha and supm to checks in riscv-profiles.c (#114123)
-rw-r--r-- | clang/test/Driver/riscv-profiles.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/clang/test/Driver/riscv-profiles.c b/clang/test/Driver/riscv-profiles.c index 2b4d194..67e09d0 100644 --- a/clang/test/Driver/riscv-profiles.c +++ b/clang/test/Driver/riscv-profiles.c @@ -147,6 +147,7 @@ // RVA23U64: "-target-feature" "+zvbb" // RVA23U64: "-target-feature" "+zvfhmin" // RVA23U64: "-target-feature" "+zvkt" +// RVA23U64: "-target-feature" "+supm" // RUN: %clang --target=riscv64 -### -c %s 2>&1 -march=rva23s64 \ // RUN: | FileCheck -check-prefix=RVA23S64 %s @@ -186,6 +187,7 @@ // RVA23S64: "-target-feature" "+zvbb" // RVA23S64: "-target-feature" "+zvfhmin" // RVA23S64: "-target-feature" "+zvkt" +// RVA23S64: "-target-feature" "+sha" // RVA23S64: "-target-feature" "+shcounterenw" // RVA23S64: "-target-feature" "+shgatpa" // RVA23S64: "-target-feature" "+shtvala" @@ -201,6 +203,7 @@ // RVA23S64: "-target-feature" "+sstvala" // RVA23S64: "-target-feature" "+sstvecd" // RVA23S64: "-target-feature" "+ssu64xl" +// RVA23S64: "-target-feature" "+supm" // RVA23S64: "-target-feature" "+svade" // RVA23S64: "-target-feature" "+svbare" // RVA23S64: "-target-feature" "+svinval" |