Scott Todd | 111be2e | 2021-06-10 12:56:53 -0700 | [diff] [blame] | 1 | // 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 Laurenzo | 309dc5b | 2023-02-22 23:07:43 -0800 | [diff] [blame] | 11 | #include "iree/compiler/tool_entry_points_api.h" |
Scott Todd | 111be2e | 2021-06-10 12:56:53 -0700 | [diff] [blame] | 12 | |
Stella Laurenzo | 7ec09ce | 2022-11-24 11:13:52 -0800 | [diff] [blame] | 13 | int main(int argc, char **argv) { return ireeMlirLspServerRunMain(argc, argv); } |