[AMDGPU] Add True16 register classes.
[llvm-project.git] / lldb / test / API / python_api / thread / main.cpp
blobdde740a1b6bf6507d08af4339e9024b1eb09e616
1 #include <stdio.h>
3 // This simple program is to test the lldb Python API related to thread.
5 char my_char = 'u';
6 int my_int = 0;
8 int main (int argc, char const *argv[])
10 for (int i = 0; i < 3; ++i) {
11 printf("my_char='%c'\n", my_char);
12 ++my_char;
15 printf("after the loop: my_char='%c'\n", my_char); // 'my_char' should print out as 'x'.
17 return 0; // Set break point at this line and check variable 'my_char'.