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
This commit is contained in:
parent
47b25362bc
commit
b9700367fa
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
2014-11-12 H.J. Lu <hongjiu.lu@intel.com>
|
||||
|
||||
PR testsuite/63830
|
||||
* c-c++-common/asan/strlen-overflow-1.c (main): Avoid tail call.
|
||||
|
||||
2014-11-12 Jakub Jelinek <jakub@redhat.com>
|
||||
|
||||
PR c/59708
|
||||
|
|
|
@ -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)" } */
|
||||
|
|
Loading…
Add table
Reference in a new issue