summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Wu <XrXr@users.noreply.github.com>2025-11-04 12:46:00 -0500
committerGitHub <noreply@github.com>2025-11-04 17:46:00 +0000
commitb6f00701cbcee1ca791384b571e1e4057749834a (patch)
treed56d5852510870e03519527a28923c3f081e1c90
parent14f6f7051b9fd226dc209961563879b9cf18759e (diff)
[DOC] Mention on top of `vm_*.c` files the VM translation unit they're in (#15048)
vm_method.c already mentions it.
-rw-r--r--vm_args.c2
-rw-r--r--vm_eval.c2
-rw-r--r--vm_insnhelper.c2
3 files changed, 3 insertions, 3 deletions
diff --git a/vm_args.c b/vm_args.c
index 777bcd21b3..5952b32f1f 100644
--- a/vm_args.c
+++ b/vm_args.c
@@ -1,6 +1,6 @@
/**********************************************************************
- vm_args.c - process method call arguments.
+ vm_args.c - process method call arguments. Included into vm.c.
$Author$
diff --git a/vm_eval.c b/vm_eval.c
index b791cd4990..cd3f1bbafa 100644
--- a/vm_eval.c
+++ b/vm_eval.c
@@ -1,6 +1,6 @@
/**********************************************************************
- vm_eval.c -
+ vm_eval.c - Included into vm.c.
$Author$
created at: Sat May 24 16:02:32 JST 2008
diff --git a/vm_insnhelper.c b/vm_insnhelper.c
index 27177d9b13..e3ae25b176 100644
--- a/vm_insnhelper.c
+++ b/vm_insnhelper.c
@@ -1,6 +1,6 @@
/**********************************************************************
- vm_insnhelper.c - instruction helper functions.
+ vm_insnhelper.c - instruction helper functions. Included into vm.c.
$Author$