[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:
Steve Scalpone 2019-11-14 20:34:50 -08:00
parent ccee728e5a
commit 33dad73187
12 changed files with 14 additions and 14 deletions

View File

@ -14,8 +14,8 @@
add_library(FortranCommon
Fortran.cc
Fortran-features.cc
default-kinds.cc
flang-features.cc
idioms.cc
)

View File

@ -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"

View File

@ -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_

View File

@ -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>

View File

@ -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>

View File

@ -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>

View File

@ -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>

View File

@ -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>

View File

@ -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"

View File

@ -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"

View File

@ -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"

View File

@ -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"