forked from OSchip/llvm-project
[asan] rename contiguous-container-buffer-overflow (too long) to container-overflow
llvm-svn: 195352
This commit is contained in:
parent
5f1a783914
commit
67968632ba
|
@ -749,7 +749,7 @@ void __asan_report_error(uptr pc, uptr bp, uptr sp,
|
|||
bug_descr = "use-after-poison";
|
||||
break;
|
||||
case kAsanContiguousContainerOOBMagic:
|
||||
bug_descr = "contiguous-container-buffer-overflow";
|
||||
bug_descr = "container-overflow";
|
||||
break;
|
||||
case kAsanStackUseAfterScopeMagic:
|
||||
bug_descr = "stack-use-after-scope";
|
||||
|
|
|
@ -13,4 +13,4 @@ int main(int argc, char **argv) {
|
|||
&t[0] + 50);
|
||||
return t[60 * argc]; // Touches the poisoned memory.
|
||||
}
|
||||
// CHECK: AddressSanitizer: contiguous-container-buffer-overflow
|
||||
// CHECK: AddressSanitizer: container-overflow
|
||||
|
|
Loading…
Reference in New Issue