e1a12767ee
This patch enable lowering from Fortran to FIR for a basic empty program. It brings all the infrastructure needed for that. As discussed previously, this is the first patch for lowering and follow up patches should be smaller. With this patch we can lower the following code: ``` program basic end program ``` To a the FIR equivalent: ``` func @_QQmain() { return } ``` Follow up patch will add lowering of more complex constructs. Reviewed By: kiranchandramohan, schweitz, PeteSteinfeld Differential Revision: https://reviews.llvm.org/D118436
15 lines
521 B
CMake
15 lines
521 B
CMake
#===-- tools/CMakeLists.txt ------------------------------------------------===#
|
|
#
|
|
# Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
# See https://llvm.org/LICENSE.txt for license information.
|
|
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
#
|
|
#===------------------------------------------------------------------------===#
|
|
|
|
add_subdirectory(bbc)
|
|
add_subdirectory(f18)
|
|
add_subdirectory(flang-driver)
|
|
add_subdirectory(tco)
|
|
add_subdirectory(f18-parse-demo)
|
|
add_subdirectory(fir-opt)
|