forked from OSchip/llvm-project
[flang] Rename flang-features to Fortran-features; update the guard macro.
Original-commit: flang-compiler/f18@1a7f5596ec Reviewed-on: https://github.com/flang-compiler/f18/pull/826
This commit is contained in:
parent
ccee728e5a
commit
33dad73187
|
@ -14,8 +14,8 @@
|
|||
|
||||
add_library(FortranCommon
|
||||
Fortran.cc
|
||||
Fortran-features.cc
|
||||
default-kinds.cc
|
||||
flang-features.cc
|
||||
idioms.cc
|
||||
)
|
||||
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
|
||||
#include "flang-features.h"
|
||||
#include "Fortran-features.h"
|
||||
#include "Fortran.h"
|
||||
#include "idioms.h"
|
||||
|
|
@ -12,8 +12,8 @@
|
|||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
|
||||
#ifndef FORTRAN_COMMON_FEATURES_H_
|
||||
#define FORTRAN_COMMON_FEATURES_H_
|
||||
#ifndef FORTRAN_COMMON_FORTRAN_FEATURES_H_
|
||||
#define FORTRAN_COMMON_FORTRAN_FEATURES_H_
|
||||
|
||||
#include "Fortran.h"
|
||||
#include "enum-set.h"
|
||||
|
@ -67,4 +67,4 @@ private:
|
|||
bool warnAll_{false};
|
||||
};
|
||||
}
|
||||
#endif // FORTRAN_COMMON_FEATURES_H_
|
||||
#endif // FORTRAN_COMMON_FORTRAN_FEATURES_H_
|
|
@ -33,7 +33,7 @@
|
|||
#include "parse-state.h"
|
||||
#include "provenance.h"
|
||||
#include "user-state.h"
|
||||
#include "../common/flang-features.h"
|
||||
#include "../common/Fortran-features.h"
|
||||
#include "../common/idioms.h"
|
||||
#include "../common/indirection.h"
|
||||
#include <cstring>
|
||||
|
|
|
@ -25,7 +25,7 @@
|
|||
#include "message.h"
|
||||
#include "provenance.h"
|
||||
#include "user-state.h"
|
||||
#include "../common/flang-features.h"
|
||||
#include "../common/Fortran-features.h"
|
||||
#include "../common/idioms.h"
|
||||
#include <cstddef>
|
||||
#include <cstring>
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
#include "message.h"
|
||||
#include "parse-tree.h"
|
||||
#include "provenance.h"
|
||||
#include "../common/flang-features.h"
|
||||
#include "../common/Fortran-features.h"
|
||||
#include <optional>
|
||||
#include <ostream>
|
||||
#include <string>
|
||||
|
|
|
@ -26,7 +26,7 @@
|
|||
#include "message.h"
|
||||
#include "provenance.h"
|
||||
#include "token-sequence.h"
|
||||
#include "../common/flang-features.h"
|
||||
#include "../common/Fortran-features.h"
|
||||
#include <bitset>
|
||||
#include <optional>
|
||||
#include <string>
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
|
||||
#include "char-block.h"
|
||||
#include "parse-tree.h"
|
||||
#include "../common/flang-features.h"
|
||||
#include "../common/Fortran-features.h"
|
||||
#include "../common/idioms.h"
|
||||
#include <cinttypes>
|
||||
#include <optional>
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
#include "expression.h"
|
||||
#include "semantics.h"
|
||||
#include "tools.h"
|
||||
#include "../common/flang-features.h"
|
||||
#include "../common/Fortran-features.h"
|
||||
#include "../common/idioms.h"
|
||||
#include "../common/indirection.h"
|
||||
#include "../evaluate/fold.h"
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
#define FORTRAN_SEMANTICS_SEMANTICS_H_
|
||||
|
||||
#include "scope.h"
|
||||
#include "../common/flang-features.h"
|
||||
#include "../common/Fortran-features.h"
|
||||
#include "../evaluate/common.h"
|
||||
#include "../evaluate/intrinsics.h"
|
||||
#include "../parser/message.h"
|
||||
|
|
|
@ -27,8 +27,8 @@
|
|||
// scaffolding compiler driver that can test some semantic passes of the
|
||||
// F18 compiler under development.
|
||||
|
||||
#include "../../lib/common/Fortran-features.h"
|
||||
#include "../../lib/common/default-kinds.h"
|
||||
#include "../../lib/common/flang-features.h"
|
||||
#include "../../lib/parser/characters.h"
|
||||
#include "../../lib/parser/dump-parse-tree.h"
|
||||
#include "../../lib/parser/message.h"
|
||||
|
|
|
@ -14,8 +14,8 @@
|
|||
|
||||
// Temporary Fortran front end driver main program for development scaffolding.
|
||||
|
||||
#include "../../lib/common/Fortran-features.h"
|
||||
#include "../../lib/common/default-kinds.h"
|
||||
#include "../../lib/common/flang-features.h"
|
||||
#include "../../lib/evaluate/expression.h"
|
||||
#include "../../lib/parser/characters.h"
|
||||
#include "../../lib/parser/dump-parse-tree.h"
|
||||
|
|
Loading…
Reference in New Issue