[LoopVectorizer] Propagate underlying instruction to the cloned instances of VPPartia...
[llvm-project.git] / flang / tools / fir-lsp-server / fir-lsp-server.cpp
blob8b724e292b5abbc71a6180f6453377f6fd18aa7e
1 #include "mlir/Tools/mlir-lsp-server/MlirLspServerMain.h"
2 #include "flang/Optimizer/Support/InitFIR.h"
4 int main(int argc, char **argv) {
5 mlir::DialectRegistry registry;
6 fir::support::registerNonCodegenDialects(registry);
7 fir::support::addFIRExtensions(registry);
8 return mlir::failed(mlir::MlirLspServerMain(argc, argv, registry));