[RISCV] Remove old FIXMEs from test. NFC
[llvm-project.git] / cross-project-tests / debuginfo-tests / dexter-tests / hello.c
blob1e7b050cf08f7b3f9114b82521a8bd3c2986de5a
1 // REQUIRES: system-windows
2 //
3 // RUN: %clang_cl /Z7 /Zi %s -o %t
4 // RUN: %dexter --fail-lt 1.0 -w --binary %t --debugger 'dbgeng' -- %s
6 #include <stdio.h>
7 int main() {
8 printf("hello world\n");
9 int x = 42;
10 __debugbreak(); // DexLabel('stop')
13 // DexExpectWatchValue('x', 42, on_line=ref('stop'))