File: PR52382.c

package info (click to toggle)
swiftlang 6.1.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,791,532 kB
  • sloc: cpp: 9,901,743; ansic: 2,201,431; asm: 1,091,827; python: 308,252; objc: 82,166; f90: 80,126; lisp: 38,358; pascal: 25,559; sh: 20,429; ml: 5,058; perl: 4,745; makefile: 4,484; awk: 3,535; javascript: 3,018; xml: 918; fortran: 664; cs: 573; ruby: 396
file content (12 lines) | stat: -rw-r--r-- 559 bytes parent folder | download | duplicates (21)
1
2
3
4
5
6
7
8
9
10
11
12
// RUN: %clang_asan -O0 %s -o %t -w && not %run %t 2>&1 | FileCheck %s
// RUN: %clang_asan -O2 %s -o %t -w && not %run %t 2>&1 | FileCheck %s

int global_array[100] = {-1};

// This access is 412 bytes after the start of the global: past the end of the
// uninstrumented array, but within the bounds of the extended instrumented
// array. We should ensure this is still instrumented.
int main(void) { return global_array[103]; }

// CHECK: AddressSanitizer: global-buffer-overflow on address
// CHECK: is located 12 bytes after global variable 'global_array'