Displaying 3 results from an estimated 3 matches for "d83725".
Did you mean:
d8372
2020 Jul 14
5
Multiple documents in one test file
...her characteristics
when include_directories[0] is B, we have to use another test file.
The arguments apply to many other types of tests (opt on .ll, llc on .ll and .mir, clang on .c, yaml2obj on .yaml, etc).
I have a patch teaching llvm-mc about an option to split input: https://reviews.llvm.org/D83725
(30+ lines)
In a comment, Richard Smith mentioned whether we can add a separate extractor utility:
```
# RUN: extract bb %s | llvm-mc - 2>&1 | FileCheck %s --check-prefix=BB
or
# RUN: extract bb %s -o %t.bb
# RUN: llvm-mc %t.bb 2>&1 | FileCheck %t.bb
```
The advantage is its vers...
2020 Jul 14
2
Multiple documents in one test file
...] is B, we have to use another test file.
>
> The arguments apply to many other types of tests (opt on .ll, llc on
> .ll and .mir, clang on .c, yaml2obj on .yaml, etc).
>
> I have a patch teaching llvm-mc about an option to split input:
> https://reviews.llvm.org/D83725
> (30+ lines)
>
> In a comment, Richard Smith mentioned whether we can add a separate
> extractor utility:
>
> ```
> # RUN: extract bb %s | llvm-mc - 2>&1 | FileCheck %s --check-prefix=BB
>
> or
>
> # RUN: extract bb %s -o %t.b...
2020 Jul 14
2
Multiple documents in one test file
...lude_directories[0] is B, we have to use another test file.
>
> The arguments apply to many other types of tests (opt on .ll, llc on .ll
> and .mir, clang on .c, yaml2obj on .yaml, etc).
>
> I have a patch teaching llvm-mc about an option to split input:
> https://reviews.llvm.org/D83725
> (30+ lines)
>
> In a comment, Richard Smith mentioned whether we can add a separate
> extractor utility:
>
> ```
> # RUN: extract bb %s | llvm-mc - 2>&1 | FileCheck %s --check-prefix=BB
>
> or
>
> # RUN: extract bb %s -o %t.bb
> # RUN: llvm-mc %t.bb 2>...