Fix it's -> its where applicable. (Stefan Haubenthal).

git-svn-id: svn://svn.cc65.org/cc65/trunk@5065 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
uz
2011-06-17 18:56:55 +00:00
parent 1a0571fdc3
commit 70d5eb7456
5 changed files with 10 additions and 10 deletions

View File

@@ -101,7 +101,7 @@ constant. The compiler emits code to add a constant to the secondary register.
Same thing again for the constant 3. So the code produced contains a fetch
of 'i', two additions of constants, and a store (into 'i'). Unfortunately, the
compiler does not see, that "OFFS + 3" is a constant for itself, since it does
it's evaluation from left to right. There are some ways to help the compiler
its evaluation from left to right. There are some ways to help the compiler
to recognize expression like this:
<enum>