diff options
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/testsuite/gcc.dg/out-of-bounds-1.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/testsuite/gcc.dg/out-of-bounds-1.c b/gcc/testsuite/gcc.dg/out-of-bounds-1.c index 1c76341..5c134c0 100644 --- a/gcc/testsuite/gcc.dg/out-of-bounds-1.c +++ b/gcc/testsuite/gcc.dg/out-of-bounds-1.c @@ -8,6 +8,6 @@ void ProjectOverlay(const float localTextureAxis[2], char *lump) { const void *d = &localTextureAxis; - int size = sizeof(float)*8 ; + int size = sizeof(float)*7 ; __builtin_memcpy( &lump[ 0 ], d, size ); /* { dg-warning "reading" } */ } |