1
0
mirror of https://github.com/cc65/cc65.git synced 2024-09-28 10:55:43 +00:00

Fixed a typo

git-svn-id: svn://svn.cc65.org/cc65/trunk@1244 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz 2002-04-18 19:51:55 +00:00
parent fe027ce916
commit 7bb10e54f3

View File

@ -365,7 +365,7 @@ instead will give shorter and faster code.
Since cc65 has the "wrong" calling order, the location of the fixed parameters
in a variadic function (a function with a variable parameter list) depends on
the number and size of variable arguments passed. Since this number and size
is unknown at compiler time, the compiler will generate code to calculate the
is unknown at compile time, the compiler will generate code to calculate the
location on the stack when needed.
Because of this additional code, accessing the fixed parameters in a variadic