From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1643) id BD0913858C30; Tue, 7 Feb 2023 17:55:40 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org BD0913858C30 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1675792540; bh=oC/nv3/gNkawj2ULezhGtTClfaZxd8kJ7JkNIlmtGcc=; h=From:To:Subject:Date:From; b=u9vEecUVtDb/Tpg2/ATRLSWLOHUnyw0XpEfte75XlLZCOiHTgtT5NNJZIDDwUnjWM cIj5MkrOaV8C6Wtm07zZcLK+rnOEZY69u7guTPYLnxJyvUA5LqxZSWPp/sl6+j+g43 037vjDUnmkVqJ7ftD4E9h6rZXrlym0pmLx3W/gOE= Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Thomas Schwinge To: gcc-cvs@gcc.gnu.org Subject: [gcc/devel/rust/master] gccrs: Rename rust-tyctx.cc to rust-typecheck-context.cc X-Act-Checkin: gcc X-Git-Author: Philip Herron X-Git-Refname: refs/heads/devel/rust/master X-Git-Oldrev: 5ea0f26bab31e63aaab85eee25250eddb753486f X-Git-Newrev: 56a21f487f4ae2203727d4940812bff160f5f85c Message-Id: <20230207175540.BD0913858C30@sourceware.org> Date: Tue, 7 Feb 2023 17:55:40 +0000 (GMT) List-Id: https://gcc.gnu.org/g:56a21f487f4ae2203727d4940812bff160f5f85c commit 56a21f487f4ae2203727d4940812bff160f5f85c Author: Philip Herron Date: Mon Jan 16 19:31:11 2023 +0000 gccrs: Rename rust-tyctx.cc to rust-typecheck-context.cc Signed-off-by: Philip Herron gcc/rust/ChangeLog: * Make-lang.in: update name * typecheck/rust-tyctx.cc: Moved to... * typecheck/rust-typecheck-context.cc: ...here. Diff: --- gcc/rust/Make-lang.in | 2 +- gcc/rust/typecheck/{rust-tyctx.cc => rust-typecheck-context.cc} | 0 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/rust/Make-lang.in b/gcc/rust/Make-lang.in index 82d5c5d8b0a..5f5cee71c13 100644 --- a/gcc/rust/Make-lang.in +++ b/gcc/rust/Make-lang.in @@ -118,7 +118,7 @@ GRS_OBJS = \ rust/rust-tyty-util.o \ rust/rust-tyty-call.o \ rust/rust-tyty-subst.o \ - rust/rust-tyctx.o \ + rust/rust-typecheck-context.o \ rust/rust-tyty-bounds.o \ rust/rust-hir-type-check-util.o \ rust/rust-hir-trait-resolve.o \ diff --git a/gcc/rust/typecheck/rust-tyctx.cc b/gcc/rust/typecheck/rust-typecheck-context.cc similarity index 100% rename from gcc/rust/typecheck/rust-tyctx.cc rename to gcc/rust/typecheck/rust-typecheck-context.cc