Details
Details
Diff Detail
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
llvm/test/Transforms/InstCombine/extractelement.ll | ||
---|---|---|
4–5 | In most of these tests, LE64 will be the same as LE128, and BE64 will be the same as BE128. Can we make common prefixes for those 2 pairs of runs? |
llvm/test/Transforms/InstCombine/extractelement.ll | ||
---|---|---|
4–5 | Done, thanks. |
llvm/test/Transforms/InstCombine/extractelement.ll | ||
---|---|---|
4–5 | This is not what I was thinking. Would it make it the diff smaller like this: ; RUN: opt < %s -passes=instcombine -S -data-layout="e-n64" | FileCheck %s --check-prefixes=ANY,ANYLE,LE64 ; RUN: opt < %s -passes=instcombine -S -data-layout="e-n128" | FileCheck %s --check-prefixes=ANY,ANYLE,LE128 ; RUN: opt < %s -passes=instcombine -S -data-layout="E-n64" | FileCheck %s --check-prefixes=ANY,ANYBE,BE64 ; RUN: opt < %s -passes=instcombine -S -data-layout="E-n128" | FileCheck %s --check-prefixes=ANY,ANYBE,BE128 |
llvm/test/Transforms/InstCombine/extractelement.ll | ||
---|---|---|
4–5 | Done, thanks. |
In most of these tests, LE64 will be the same as LE128, and BE64 will be the same as BE128. Can we make common prefixes for those 2 pairs of runs?