diff options
author | Alex Coplan <alex.coplan@arm.com> | 2021-12-01 13:59:32 +0000 |
---|---|---|
committer | Alex Coplan <alex.coplan@arm.com> | 2021-12-01 13:59:32 +0000 |
commit | a7fede6704dd207fb32b97bc30f945acc7b953c5 (patch) | |
tree | b382fed73f05f6b0e68058e23d766d01c8dbf9c3 | |
parent | d376b73aa12d183e3040456c7641fb74500d0727 (diff) | |
download | gcc-a7fede6704dd207fb32b97bc30f945acc7b953c5.zip gcc-a7fede6704dd207fb32b97bc30f945acc7b953c5.tar.gz gcc-a7fede6704dd207fb32b97bc30f945acc7b953c5.tar.bz2 |
testsuite: Fix typo in comment in aapcs64 test
gcc/testsuite/ChangeLog:
* gcc.target/aarch64/aapcs64/macro-def.h (PTR): Fix typo in
comment.
-rw-r--r-- | gcc/testsuite/gcc.target/aarch64/aapcs64/macro-def.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/testsuite/gcc.target/aarch64/aapcs64/macro-def.h b/gcc/testsuite/gcc.target/aarch64/aapcs64/macro-def.h index 72a4706..e681de6 100644 --- a/gcc/testsuite/gcc.target/aarch64/aapcs64/macro-def.h +++ b/gcc/testsuite/gcc.target/aarch64/aapcs64/macro-def.h @@ -63,7 +63,7 @@ #define ANON_PROMOTED(type,val,type_promoted, val_promoted, offset,...) \ ANON(type_promoted, val_promoted, offset, __VA_ARGS__) /* Composite larger than 16 bytes is replaced by a pointer to a copy prepared - by the caller, so here we extrat the pointer, deref it and compare the + by the caller, so here we extract the pointer, deref it and compare the content with that of the original one. */ #define PTR(type, val, offset, ...) { \ type * ptr; \ |