Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / lldb / test / API / tools / lldb-server / libraries-svr4 / main.cpp
blobe9bc27149b00fd4e4cbe42f845e1417efa634c4e
1 int main(int argc, char **argv) {
2 // Perform a null pointer access.
3 int *const null_int_ptr = nullptr;
4 *null_int_ptr = 0xDEAD;
6 return 0;