diff options
author | Philip Herron <philip.herron@embecosm.com> | 2022-01-25 16:28:52 +0000 |
---|---|---|
committer | Philip Herron <philip.herron@embecosm.com> | 2022-01-29 14:17:44 +0000 |
commit | 63429653c1aed3fd5e9d1de5d75c1831351855eb (patch) | |
tree | 623e8a463928263096e7888660e164bdfaee36e0 | |
parent | bc7f518ac6f5c05f1c6edd7a1601f32753bab47d (diff) | |
download | gcc-63429653c1aed3fd5e9d1de5d75c1831351855eb.zip gcc-63429653c1aed3fd5e9d1de5d75c1831351855eb.tar.gz gcc-63429653c1aed3fd5e9d1de5d75c1831351855eb.tar.bz2 |
Change default crate name to example
-rw-r--r-- | gcc/rust/rust-session-manager.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/rust/rust-session-manager.cc b/gcc/rust/rust-session-manager.cc index c930f55..83f35ff 100644 --- a/gcc/rust/rust-session-manager.cc +++ b/gcc/rust/rust-session-manager.cc @@ -69,7 +69,7 @@ const char *kHIRDumpFile = "gccrs.hir.dump"; const char *kHIRTypeResolutionDumpFile = "gccrs.type-resolution.dump"; const char *kTargetOptionsDumpFile = "gccrs.target-options.dump"; -const std::string kDefaultCrateName = "TestCrate"; +const std::string kDefaultCrateName = "example"; // Implicitly enable a target_feature (and recursively enable dependencies). void |