You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
291 B
13 lines
291 B
4 months ago
|
// RUN: %clangxx_memprof -O2 %s -o %t && %run %t 2>&1 | FileCheck %s
|
||
|
|
||
|
const char *kMemProfDefaultOptions = "verbosity=1 help=1";
|
||
|
|
||
|
extern "C" const char *__memprof_default_options() {
|
||
|
// CHECK: Available flags for MemProfiler:
|
||
|
return kMemProfDefaultOptions;
|
||
|
}
|
||
|
|
||
|
int main() {
|
||
|
return 0;
|
||
|
}
|