Pre-commit tests for D108129.
Details
Details
Diff Detail
Diff Detail
- Repository
- rG LLVM Github Monorepo
Unit Tests
Unit Tests
Time | Test | |
---|---|---|
2,960 ms | x64 debian > libFuzzer.libFuzzer::fuzzer-finalstats.test |
Event Timeline
llvm/test/CodeGen/RISCV/rvv/vmulhu-sdnode-rv32.ll | ||
---|---|---|
306 ↗ | (On Diff #375764) | you can probably get rid of cfi noise bv adding a nounwind attribute? |
Comment Actions
LGTM if that issue is fixed.
llvm/test/CodeGen/RISCV/rvv/vmulhu-sdnode.ll | ||
---|---|---|
40 | Missing checks here and in other functions. Unless the file wasn't generated correctly, this is probably because the codegen differs between RV32 and RV64. You likely need --check-prefixes=RV32,CHECK and --check-prefixes=RV64,CHECK |
Comment Actions
Nice catch!
llvm/test/CodeGen/RISCV/rvv/vmulhu-sdnode.ll | ||
---|---|---|
4 | As per @frasercrmck request: ; RUN: llc -mtriple=riscv32 -mattr=+experimental-v -verify-machineinstrs < %s | FileCheck %s --check-prefixes=CHECK,RV32 ; RUN: llc -mtriple=riscv64 -mattr=+experimental-v -verify-machineinstrs < %s | FileCheck %s --check-prefixes=CHECK,RV64 |
llvm/test/CodeGen/RISCV/rvv/vmulhu-sdnode.ll | ||
---|---|---|
4 | Done, thanks a lot. |
As per @frasercrmck request: