diff options
author | Owen Avery <powerboat9.gamer@gmail.com> | 2023-05-28 09:44:39 -0400 |
---|---|---|
committer | CohenArthur <arthur.cohen@embecosm.com> | 2023-06-07 11:23:48 +0000 |
commit | ab44003c26a5dc5c92145d491e51b7582d51a4f6 (patch) | |
tree | d164f6915e0aeeed1368beb0bfa3297772af08c9 /gcc/rust/util/rust-dir-owner.h | |
parent | 25b40ba2e03c4ff030adb7ce8ce00e5315c46cb3 (diff) | |
download | gcc-ab44003c26a5dc5c92145d491e51b7582d51a4f6.zip gcc-ab44003c26a5dc5c92145d491e51b7582d51a4f6.tar.gz gcc-ab44003c26a5dc5c92145d491e51b7582d51a4f6.tar.bz2 |
Fix non-mod-rs files' external module loading paths
gcc/rust/ChangeLog:
* Make-lang.in: Add "rust-dir-owner.o".
* ast/rust-ast.cc: Include "rust-dir-owner.h".
(Module::process_file_path):
Handle non-mod-rs external file modules properly.
* parse/rust-parse-impl.h: Include "rust-dir-owner.h".
(Parser::parse_module):
Handle non-mod-rs external file modules properly.
* util/rust-dir-owner.cc: New file.
* util/rust-dir-owner.h: New file.
gcc/testsuite/ChangeLog:
* rust/compile/test_mod.rs: Moved to...
* rust/compile/issue-1089/test_mod.rs: ...here.
* rust/compile/mod_missing_middle.rs: Fix paths.
* rust/compile/missing_middle/both_path.rs: Moved to...
* rust/compile/mod_missing_middle/missing_middle/both_path.rs: ...here.
* rust/compile/missing_middle/explicit.not.rs: Moved to...
* rust/compile/mod_missing_middle/missing_middle/explicit.not.rs: ...here.
* rust/compile/missing_middle/other.rs: Moved to...
* rust/compile/mod_missing_middle/missing_middle/explicit.not/other.rs: ...here.
* rust/compile/missing_middle/inner_path.rs: Moved to...
* rust/compile/mod_missing_middle/missing_middle/inner_path.rs: ...here.
* rust/compile/missing_middle/outer_path.rs: Moved to...
* rust/compile/mod_missing_middle/missing_middle/outer_path.rs: ...here.
* rust/compile/missing_middle/sub/mod.rs: Moved to...
* rust/compile/mod_missing_middle/missing_middle/sub/mod.rs: ...here.
* rust/compile/torture/modules/mod.rs: Moved to...
* rust/compile/torture/extern_mod1/modules/mod.rs: ...here.
* rust/execute/torture/modules/mod.rs: Moved to...
* rust/execute/torture/extern_mod4/modules/mod.rs: ...here.
Signed-off-by: Owen Avery <powerboat9.gamer@gmail.com>
Diffstat (limited to 'gcc/rust/util/rust-dir-owner.h')
-rw-r--r-- | gcc/rust/util/rust-dir-owner.h | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/gcc/rust/util/rust-dir-owner.h b/gcc/rust/util/rust-dir-owner.h new file mode 100644 index 0000000..0134f54 --- /dev/null +++ b/gcc/rust/util/rust-dir-owner.h @@ -0,0 +1,34 @@ +// Copyright (C) 2023 Free Software Foundation, Inc. + +// This file is part of GCC. + +// GCC is free software; you can redistribute it and/or modify it under +// the terms of the GNU General Public License as published by the Free +// Software Foundation; either version 3, or (at your option) any later +// version. + +// GCC is distributed in the hope that it will be useful, but WITHOUT ANY +// WARRANTY; without even the implied warranty of MERCHANTABILITY or +// FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License +// for more details. + +// You should have received a copy of the GNU General Public License +// along with GCC; see the file COPYING3. If not see +// <http://www.gnu.org/licenses/>. + +// Handles non-mod-rs and mod-rs file differentiation + +#ifndef RUST_DIR_OWNER +#define RUST_DIR_OWNER + +#include "rust-system.h" + +namespace Rust { + +// extracts the owned subdirectory name from a file name +bool +get_file_subdir (const std::string &filename, std::string &subdir); + +} // namespace Rust + +#endif // RUST_DIR_OWNER |