[AMDGPU] Add True16 register classes.
[llvm-project.git] / lldb / test / API / commands / dwim-print / main.c
blobe2eccf3a88b4b1071f145281c810eecdba3d12e1
1 struct Structure {
2 int number;
3 };
5 int main(int argc, char **argv) {
6 struct Structure s;
7 s.number = 30;
8 // break here
9 return 0;