Details
Details
- Reviewers
- None
Diff Detail
Diff Detail
- Repository
- rG LLVM Github Monorepo
Time | Test | |
---|---|---|
390 ms | linux > HWAddressSanitizer-x86_64.TestCases::sizes.cpp Script:
--
: 'RUN: at line 3'; /mnt/disks/ssd0/agent/llvm-project/build/./bin/clang --driver-mode=g++ -m64 -gline-tables-only -fsanitize=hwaddress -fuse-ld=lld -mcmodel=large -mllvm -hwasan-globals -mllvm -hwasan-use-short-granules -mllvm -hwasan-instrument-landing-pads=0 -mllvm -hwasan-instrument-personality-functions /mnt/disks/ssd0/agent/llvm-project/compiler-rt/test/hwasan/TestCases/sizes.cpp -nostdlib++ -lstdc++ -o /mnt/disks/ssd0/agent/llvm-project/build/projects/compiler-rt/test/hwasan/X86_64/TestCases/Output/sizes.cpp.tmp
| |
40 ms | linux > LLVM.CodeGen/AMDGPU::opt-pipeline.ll Script:
--
: 'RUN: at line 1'; /mnt/disks/ssd0/agent/llvm-project/build/bin/opt -O0 -mtriple=amdgcn--amdhsa -disable-output -disable-verify -debug-pass=Structure /mnt/disks/ssd0/agent/llvm-project/llvm/test/CodeGen/AMDGPU/opt-pipeline.ll 2>&1 | /mnt/disks/ssd0/agent/llvm-project/build/bin/FileCheck -check-prefix=GCN-O0 /mnt/disks/ssd0/agent/llvm-project/llvm/test/CodeGen/AMDGPU/opt-pipeline.ll
| |
50 ms | linux > LLVM.Other::opt-O0-pipeline.ll Script:
--
: 'RUN: at line 1'; /mnt/disks/ssd0/agent/llvm-project/build/bin/opt -enable-new-pm=0 -mtriple=x86_64-- -O0 -debug-pass=Structure < /mnt/disks/ssd0/agent/llvm-project/llvm/test/Other/opt-O0-pipeline.ll -o /dev/null 2>&1 | /mnt/disks/ssd0/agent/llvm-project/build/bin/FileCheck /mnt/disks/ssd0/agent/llvm-project/llvm/test/Other/opt-O0-pipeline.ll --check-prefixes=CHECK,CHECK-NOEXT
| |
40 ms | linux > LLVM.Other::opt-O2-pipeline.ll Script:
--
: 'RUN: at line 1'; /mnt/disks/ssd0/agent/llvm-project/build/bin/opt -enable-new-pm=0 -mtriple=x86_64-- -O2 -debug-pass=Structure < /mnt/disks/ssd0/agent/llvm-project/llvm/test/Other/opt-O2-pipeline.ll -o /dev/null 2>&1 | /mnt/disks/ssd0/agent/llvm-project/build/bin/FileCheck --check-prefixes=CHECK,CHECK-NOEXT /mnt/disks/ssd0/agent/llvm-project/llvm/test/Other/opt-O2-pipeline.ll
| |
40 ms | linux > LLVM.Other::opt-O3-pipeline-enable-matrix.ll Script:
--
: 'RUN: at line 1'; /mnt/disks/ssd0/agent/llvm-project/build/bin/opt -enable-new-pm=0 -O3 -enable-matrix -debug-pass=Structure < /mnt/disks/ssd0/agent/llvm-project/llvm/test/Other/opt-O3-pipeline-enable-matrix.ll -o /dev/null 2>&1 | /mnt/disks/ssd0/agent/llvm-project/build/bin/FileCheck /mnt/disks/ssd0/agent/llvm-project/llvm/test/Other/opt-O3-pipeline-enable-matrix.ll
| |
View Full Test Results (13 Failed) |
Event Timeline
llvm/lib/Transforms/IPO/PassManagerBuilder.cpp | ||
---|---|---|
908 | How does this get scheduled for LTO? This should probably run after IR linking and all that (when prototyping, I put it in TargetPassConfig for better results, but that doesn't sound like the right place to schedule passes like this in general) | |
llvm/lib/Transforms/Scalar/AnnotationRemarks.cpp | ||
37 | One other way would be to walk back the uses of the metadata, but it might not be worth it since it would require a ModulePass. |