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.
12 lines
345 B
12 lines
345 B
4 months ago
|
// RUN: %clang_profgen -o %t -O3 %s
|
||
|
// RUN: %run %t 1 2>&1 | FileCheck %s
|
||
|
|
||
|
// override the version variable with a bogus version:
|
||
|
unsigned long long __llvm_profile_raw_version = 10000;
|
||
|
int main(int argc, const char *argv[]) {
|
||
|
if (argc < 2)
|
||
|
return 1;
|
||
|
return 0;
|
||
|
}
|
||
|
// CHECK: LLVM Profile Error: Runtime and instrumentation version mismatch
|