[flang] Rename features.h because many linux systems have an include file called features.h which can complicate makefiles that use a search path.

Original-commit: flang-compiler/f18@fc34d0ddf3
Reviewed-on: https://github.com/flang-compiler/f18/pull/826
Tree-same-pre-rewrite: false
This commit is contained in:
Steve Scalpone 2019-11-14 15:16:38 -08:00
parent 22d5da9472
commit ccee728e5a
12 changed files with 11 additions and 11 deletions

View File

@ -15,7 +15,7 @@
add_library(FortranCommon
Fortran.cc
default-kinds.cc
features.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 "features.h"
#include "flang-features.h"
#include "Fortran.h"
#include "idioms.h"

View File

@ -33,7 +33,7 @@
#include "parse-state.h"
#include "provenance.h"
#include "user-state.h"
#include "../common/features.h"
#include "../common/flang-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/features.h"
#include "../common/flang-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/features.h"
#include "../common/flang-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/features.h"
#include "../common/flang-features.h"
#include <bitset>
#include <optional>
#include <string>

View File

@ -22,7 +22,7 @@
#include "char-block.h"
#include "parse-tree.h"
#include "../common/features.h"
#include "../common/flang-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/features.h"
#include "../common/flang-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/features.h"
#include "../common/flang-features.h"
#include "../evaluate/common.h"
#include "../evaluate/intrinsics.h"
#include "../parser/message.h"

View File

@ -28,7 +28,7 @@
// F18 compiler under development.
#include "../../lib/common/default-kinds.h"
#include "../../lib/common/features.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

@ -15,7 +15,7 @@
// Temporary Fortran front end driver main program for development scaffolding.
#include "../../lib/common/default-kinds.h"
#include "../../lib/common/features.h"
#include "../../lib/common/flang-features.h"
#include "../../lib/evaluate/expression.h"
#include "../../lib/parser/characters.h"
#include "../../lib/parser/dump-parse-tree.h"