Revert "[LoongArch] Eliminate the redundant sign extension of division (#107971)"
[llvm-project.git] / lldb / test / API / functionalities / valobj_errors / main.c
blobfabdca9d3a2ecdfcc341cf92451eaf9a7fd51d54
1 struct Opaque;
2 struct Opaque *getOpaque();
3 void puts(const char *);
5 int main() {
6 struct Opaque *x = getOpaque();
7 puts("break here\n");
8 return (int)x;