[AMDGPU] Add True16 register classes.
[llvm-project.git] / lldb / test / API / symbol_ondemand / breakpoint_source_regex / main.cpp
blob1c300cc8fbb411bdbf34ebdfe4cda9e846852c4c
1 #include <stdio.h>
3 void foo() {
4 printf("hello world from foo"); // Set break point at this line.
7 int main() {
8 foo();
9 return 0;