Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / lldb / test / Shell / Watchpoint / Inputs / languages.cpp
blob98b653f3d404a3080d25ccaa7d1ce53d3f9f1883
1 #include <cstdint>
2 #include <iostream>
4 uint64_t g_foo = 5;
5 uint64_t g_bar = 6;
6 uint64_t g_baz = 7;
8 int main() {
9 int val = 8;
10 printf("Hello world! %d\n", val);
11 return 0;