diff options
| author | Larry Doolittle <ldoolitt@recycle.lbl.gov> | 2017-09-24 18:03:26 -0700 |
|---|---|---|
| committer | Larry Doolittle <ldoolitt@recycle.lbl.gov> | 2017-09-24 18:03:26 -0700 |
| commit | 1b6806e5bb39623c75b4aa8d8d6ffe1ef7ea46e7 (patch) | |
| tree | 07a87c82efa398bce0b3d663c72c7b8e52439a1e /tests/tcctest.c | |
| parent | 44d4da62bb6aabd9030960fa41c12c097158ce0b (diff) | |
| download | tinycc-1b6806e5bb39623c75b4aa8d8d6ffe1ef7ea46e7.tar.gz tinycc-1b6806e5bb39623c75b4aa8d8d6ffe1ef7ea46e7.tar.bz2 | |
Spelling fixes
Comments only, no change to functionality
Diffstat (limited to 'tests/tcctest.c')
| -rw-r--r-- | tests/tcctest.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/tcctest.c b/tests/tcctest.c index 2add498..7877243 100644 --- a/tests/tcctest.c +++ b/tests/tcctest.c @@ -384,7 +384,7 @@ void macro_test(void) MF_s("hi"); MF_t("hi"); - /* test macro substituion inside args (should not eat stream) */ + /* test macro substitution inside args (should not eat stream) */ printf("qq=%d\n", qq(qq)(2)); /* test zero argument case. NOTE: gcc 2.95.x does not accept a @@ -404,7 +404,7 @@ comment substituted */ TEST2(); - /* And again when the name and parenthes are separated by a + /* And again when the name and parentheses are separated by a comment. */ TEST2 /* the comment */ (); @@ -3117,7 +3117,7 @@ static __inline__ unsigned long long inc64(unsigned long long a) unsigned long long res; #ifdef __x86_64__ /* Using the A constraint is wrong, and increments are tested - elsewere. */ + elsewhere. */ res = a + 1; #else __asm__("addl $1, %%eax ; adcl $0, %%edx" : "=A" (res) : "A" (a)); |
