Changed most "backticks" (grave accents) into apostrophes.
Quotations that are embraced by tick marks now look better, in most fonts.
This commit is contained in:
@@ -32,7 +32,7 @@ int main(void)
|
||||
fs=(func((fd/a),(func(2,0x0082c90f))));
|
||||
}
|
||||
|
||||
i get "Error: `)' expected" on that line. (this is with the snapshot, freshly
|
||||
i get "Error: ')' expected" on that line. (this is with the snapshot, freshly
|
||||
compiled 5 minutes ago)
|
||||
*/
|
||||
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
#include <stdio.h>
|
||||
|
||||
/*
|
||||
...gives "test.c(2): Error: Variable `foo' has unknown size" using -Cl.
|
||||
...gives "test.c(2): Error: Variable 'foo' has unknown size" using -Cl.
|
||||
Is it really unknown?
|
||||
|
||||
cc65 V2.13.0, SVN version: 4384
|
||||
|
||||
@@ -11,12 +11,12 @@ Compiler is build from cc65-snapshot-2.13.9.20101031 sources.
|
||||
Expected results and also what I get from this without any optimisations
|
||||
are: 48663 and 49218
|
||||
|
||||
When I turn on ``-O``: 58096 and 58096. After swapping the two variable
|
||||
declaration lines in `calculate_checksum()` the results are correct
|
||||
with ``-O``.
|
||||
When I turn on ''-O'': 58096 and 58096. After swapping the two variable
|
||||
declaration lines in 'calculate_checksum()' the results are correct
|
||||
with ''-O''.
|
||||
|
||||
But with ``--O --static-locals`` the results are incorrect again (31757
|
||||
and 15408). ``--static-locals`` alone works though.
|
||||
But with ''--O --static-locals'' the results are incorrect again (31757
|
||||
and 15408). ''--static-locals'' alone works though.
|
||||
*/
|
||||
|
||||
#include <stdio.h>
|
||||
|
||||
@@ -8,15 +8,15 @@
|
||||
with SVN version: 4973M
|
||||
|
||||
$ cl65 -v -o test.prg tests/cc65110210.c
|
||||
Opened include file `/usr/local/lib/cc65/include/stdio.h'
|
||||
Opened include file `/usr/local/lib/cc65/include/stddef.h'
|
||||
Opened include file `/usr/local/lib/cc65/include/stdarg.h'
|
||||
Opened include file `/usr/local/lib/cc65/include/limits.h'
|
||||
Opened include file '/usr/local/lib/cc65/include/stdio.h'
|
||||
Opened include file '/usr/local/lib/cc65/include/stddef.h'
|
||||
Opened include file '/usr/local/lib/cc65/include/stdarg.h'
|
||||
Opened include file '/usr/local/lib/cc65/include/limits.h'
|
||||
0 errors, 0 warnings
|
||||
Opened output file `tests/cc65110210.s'
|
||||
Wrote output to `tests/cc65110210.s'
|
||||
Closed output file `tests/cc65110210.s'
|
||||
cl65: Subprocess `ld65' aborted by signal 11
|
||||
Opened output file 'tests/cc65110210.s'
|
||||
Wrote output to 'tests/cc65110210.s'
|
||||
Closed output file 'tests/cc65110210.s'
|
||||
cl65: Subprocess 'ld65' aborted by signal 11
|
||||
|
||||
*/
|
||||
|
||||
|
||||
@@ -1626,7 +1626,7 @@ part7(){
|
||||
overflow:
|
||||
sigsave = 0;
|
||||
Z = V9;
|
||||
printf("Can `Z = -Y' overflow?\n");
|
||||
printf("Can 'Z = -Y' overflow?\n");
|
||||
printf("Trying it on Y = %.17e .\n", Y);
|
||||
V9 = - Y;
|
||||
V0 = V9;
|
||||
@@ -2087,7 +2087,7 @@ Instructions()
|
||||
{
|
||||
static char *instr[] = {
|
||||
"Lest this program stop prematurely, i.e. before displaying\n",
|
||||
" `END OF TEST',\n",
|
||||
" 'END OF TEST',\n",
|
||||
"try to persuade the computer NOT to terminate execution when an",
|
||||
"error like Over/Underflow or Division by Zero occurs, but rather",
|
||||
"to persevere with a surrogate value after, perhaps, displaying some",
|
||||
@@ -2170,8 +2170,8 @@ History()
|
||||
" FAILUREs, like 2+2 == 5 .",
|
||||
"Failures may confound subsequent diagnoses.\n",
|
||||
"The diagnostic capabilities of this program go beyond an earlier",
|
||||
"program called `MACHAR', which can be found at the end of the",
|
||||
"book `Software Manual for the Elementary Functions' (1980) by",
|
||||
"program called 'MACHAR', which can be found at the end of the",
|
||||
"book 'Software Manual for the Elementary Functions' (1980) by",
|
||||
"W. J. Cody and W. Waite. Although both programs try to discover",
|
||||
"the Radix, Precision and range (over/underflow thresholds)",
|
||||
"of the arithmetic, this program tries to cope with a wider variety",
|
||||
|
||||
Reference in New Issue
Block a user