[asan] rename contiguous-container-buffer-overflow (too long) to container-overflow

llvm-svn: 195352
This commit is contained in:
Kostya Serebryany 2013-11-21 12:23:52 +00:00
parent 5f1a783914
commit 67968632ba
2 changed files with 2 additions and 2 deletions

View File

@ -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";

View File

@ -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