From: H.J. Lu Date: Wed, 12 Nov 2014 12:54:00 +0000 (+0000) Subject: Avoid tail call in c-c++-common/asan/strlen-overflow-1.c X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=b9700367fa3ab754909f3b2930b432c34a74a691;p=gcc.git Avoid tail call in c-c++-common/asan/strlen-overflow-1.c PR testsuite/63830 * c-c++-common/asan/strlen-overflow-1.c (main): Avoid tail call. From-SVN: r217417 --- diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 9ec99af67cb..c72e75f781c 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2014-11-12 H.J. Lu + + PR testsuite/63830 + * c-c++-common/asan/strlen-overflow-1.c (main): Avoid tail call. + 2014-11-12 Jakub Jelinek PR c/59708 diff --git a/gcc/testsuite/c-c++-common/asan/strlen-overflow-1.c b/gcc/testsuite/c-c++-common/asan/strlen-overflow-1.c index 0f49286306a..33696ed6518 100644 --- a/gcc/testsuite/c-c++-common/asan/strlen-overflow-1.c +++ b/gcc/testsuite/c-c++-common/asan/strlen-overflow-1.c @@ -16,7 +16,7 @@ int main () { char *p = &a[0]; asm ("" : "+r"(p)); __asan_poison_memory_region ((char *)&a[1], 1); - return __builtin_strlen (a); + return __builtin_strlen (a) + 1; } /* { dg-output "READ of size 2 at 0x\[0-9a-f\]+ thread T0.*(\n|\r\n|\r)" } */