cl.exe doesn't understand it; there's /Od instead. See also the review thread for r229575. Update lots of compiler-rt tests to use -Od instead of -O0. Ran `rg -l 'clang_cl.*O0' compiler-rt/test/ | xargs sed -i -c 's/-O0/-Od/'` Differential Revision: https://reviews.llvm.org/D64506 llvm-svn: 365724
21 lines
561 B
C++
21 lines
561 B
C++
// RUN: %clang_cl_asan -Od %s -Fe%t
|
|
// RUN: %run %t 2>&1 | FileCheck %s
|
|
// RUN: %env_asan_opts=windows_hook_rtl_allocators=true %run %t 2>&1 | FileCheck %s
|
|
// UNSUPPORTED: asan-64-bits
|
|
#include <assert.h>
|
|
#include <stdio.h>
|
|
#include <windows.h>
|
|
|
|
extern "C" int
|
|
__sanitizer_get_ownership(const volatile void *p);
|
|
|
|
int main() {
|
|
char *buffer;
|
|
buffer = (char *)HeapAlloc(GetProcessHeap(), HEAP_GENERATE_EXCEPTIONS, 32);
|
|
buffer[0] = 'a';
|
|
assert(!__sanitizer_get_ownership(buffer));
|
|
HeapFree(GetProcessHeap(), 0, buffer);
|
|
puts("Okay");
|
|
// CHECK: Okay
|
|
}
|