Use clang driver on MinGW where clang-cl is not usable. MSVC target still uses clang-cl to minimize changes to existing test runners. Differential Revision: https://reviews.llvm.org/D147432
17 lines
618 B
C++
17 lines
618 B
C++
// RUN: %clang_cl_asan %Od %s %Fe%t
|
|
// RUN: not %run %t 2>&1 | FileCheck %s
|
|
|
|
#include <stdio.h>
|
|
|
|
int main() {
|
|
int subscript = 42;
|
|
char buffer[42];
|
|
buffer[subscript] = 42;
|
|
// CHECK: AddressSanitizer: stack-buffer-overflow on address [[ADDR:0x[0-9a-f]+]]
|
|
// CHECK: WRITE of size 1 at [[ADDR]] thread T0
|
|
// CHECK-NEXT: {{#0 .* main .*stack_array_right_oob.cpp}}:[[@LINE-3]]
|
|
// CHECK: Address [[ADDR]] is located in stack of thread T0 at offset [[OFFSET:.*]] in frame
|
|
// CHECK-NEXT: {{#0 .* main .*stack_array_right_oob.cpp}}
|
|
// CHECK: 'buffer'{{.*}} <== Memory access at offset [[OFFSET]] overflows this variable
|
|
}
|