bolt/deps/llvm-18.1.8/cross-project-tests/debuginfo-tests/dexter-tests/hello.c
2025-02-14 19:21:04 +01:00

13 lines
305 B
C

// REQUIRES: system-windows
//
// RUN: %clang_cl /Z7 /Zi %s -o %t
// RUN: %dexter --fail-lt 1.0 -w --binary %t --debugger 'dbgeng' -- %s
#include <stdio.h>
int main() {
printf("hello world\n");
int x = 42;
__debugbreak(); // DexLabel('stop')
}
// DexExpectWatchValue('x', 42, on_line=ref('stop'))