blob: 1077797eadc2b35de03a0acc7c4a0b6298daf3c2 [file] [log] [blame]
Scott Todd111be2e2021-06-10 12:56:53 -07001// Copyright 2021 The IREE Authors
2//
3// Licensed under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6
7// Main entry function for the IREE variant of mlir-lsp-server.
8//
9// See https://mlir.llvm.org/docs/Tools/MLIRLSP/
10
Stella Laurenzo309dc5b2023-02-22 23:07:43 -080011#include "iree/compiler/tool_entry_points_api.h"
Scott Todd111be2e2021-06-10 12:56:53 -070012
Stella Laurenzo7ec09ce2022-11-24 11:13:52 -080013int main(int argc, char **argv) { return ireeMlirLspServerRunMain(argc, argv); }