aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/execute
diff options
context:
space:
mode:
authorebotcazou <ebotcazou@138bc75d-0d04-0410-961f-82ee72b054a4>2019-08-20 09:22:32 +0000
committerebotcazou <ebotcazou@138bc75d-0d04-0410-961f-82ee72b054a4>2019-08-20 09:22:32 +0000
commit12b6cfdcff76874266ca3fad6f5d1a200546916e (patch)
treef58e986e61985469737a9e7d38145b0b785c1e6d /gcc/testsuite/gcc.c-torture/execute
parent70385fad1d5cacb1b06b24f5a6b0847b85d2a08b (diff)
* gcc.c-torture/execute/20190820-1.c: Fix typos.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/gcc-7-branch@274713 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/testsuite/gcc.c-torture/execute')
-rw-r--r--gcc/testsuite/gcc.c-torture/execute/20190820-1.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/gcc/testsuite/gcc.c-torture/execute/20190820-1.c b/gcc/testsuite/gcc.c-torture/execute/20190820-1.c
index 5bb1451203b..81a84629b6b 100644
--- a/gcc/testsuite/gcc.c-torture/execute/20190820-1.c
+++ b/gcc/testsuite/gcc.c-torture/execute/20190820-1.c
@@ -18,7 +18,7 @@ typedef u64 uint64_t;
char hex_asc_upper[16];
u16 decpair[100];
-static __attribute__((noinline, noclone))) void
+static __attribute__((noinline, noclone)) void
put_dec_full4 (char *buf, unsigned r)
{
unsigned q;
@@ -28,7 +28,7 @@ put_dec_full4 (char *buf, unsigned r)
*((u16 *)buf) = decpair[q];
}
-static __attribute__((noinline, noclone))) unsigned
+static __attribute__((noinline, noclone)) unsigned
put_dec_helper4 (char *buf, unsigned x)
{
uint32_t q = (x * (uint64_t)0x346DC5D7) >> 43;
@@ -36,7 +36,7 @@ put_dec_helper4 (char *buf, unsigned x)
return q;
}
-static __attribute__((noinline, noclone))) char *
+static __attribute__((noinline, noclone)) char *
put_dec (char *buf, unsigned long long n)
{
uint32_t d3, d2, d1, q, h;
@@ -61,7 +61,7 @@ struct printf_spec {
signed int precision:16;
} __attribute__((__packed__));
-static __attribute__((noinline, noclone))) char *
+static __attribute__((noinline, noclone)) char *
number (char *buf, char *end, unsigned long long num, struct printf_spec spec)
{
@@ -94,7 +94,7 @@ number (char *buf, char *end, unsigned long long num, struct printf_spec spec)
return buf;
}
-static __attribute__((noinline, noclone))) char *
+static __attribute__((noinline, noclone)) char *
pointer_string (char *buf, char *end, const void *ptr, struct printf_spec spec)
{
spec.base = 16;