[AArch64,ELF] Restrict MOVZ/MOVK to non-PIC large code model (#70178)
[llvm-project.git] / flang / runtime / format.cpp
blobf219c29aaed1422443086c56869c95b2185b4f16
1 //===-- runtime/format.cpp ------------------------------------------------===//
2 //
3 // Part of the LLVM Project, 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 //===----------------------------------------------------------------------===//
9 #include "format-implementation.h"
11 namespace Fortran::runtime::io {
12 template class FormatControl<
13 InternalFormattedIoStatementState<Direction::Output>>;
14 template class FormatControl<
15 InternalFormattedIoStatementState<Direction::Input>>;
16 template class FormatControl<
17 ExternalFormattedIoStatementState<Direction::Output>>;
18 template class FormatControl<
19 ExternalFormattedIoStatementState<Direction::Input>>;
20 template class FormatControl<ChildFormattedIoStatementState<Direction::Output>>;
21 template class FormatControl<ChildFormattedIoStatementState<Direction::Input>>;
22 } // namespace Fortran::runtime::io