2020-02-25 23:11:52 +08:00
|
|
|
//===-- lib/Evaluate/logical.cpp ------------------------------------------===//
|
2018-06-14 01:44:55 +08:00
|
|
|
//
|
2019-12-21 04:52:07 +08:00
|
|
|
// 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
|
2018-06-14 01:44:55 +08:00
|
|
|
//
|
2020-01-11 04:12:03 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
2018-06-14 01:44:55 +08:00
|
|
|
|
2020-02-25 23:11:52 +08:00
|
|
|
#include "flang/Evaluate/logical.h"
|
2018-06-14 01:44:55 +08:00
|
|
|
|
|
|
|
namespace Fortran::evaluate::value {
|
|
|
|
|
|
|
|
template class Logical<8>;
|
|
|
|
template class Logical<16>;
|
|
|
|
template class Logical<32>;
|
|
|
|
template class Logical<64>;
|
2020-03-29 12:00:16 +08:00
|
|
|
} // namespace Fortran::evaluate::value
|