
Adds two new clang tools to the tree. * cir-translate: Translates CIR to LLVM, similar to mlir-translate * cir-lsp-server: Implementation of the Language Server Protocol for ClangIR, similar to fir-lsp-server --------- Co-authored-by: Morris Hafner <mhafner@nvidia.com>
9 lines
200 B
Plaintext
9 lines
200 B
Plaintext
// RUN: cir-translate -verify-diagnostics --cir-to-llvmir --disable-cc-lowering %s
|
|
|
|
// expected-warning@below {{no target triple provided, assuming}}
|
|
module {
|
|
cir.func @foo() {
|
|
cir.return
|
|
}
|
|
}
|