[AMDGPU] Add True16 register classes.
[llvm-project.git] / lldb / test / API / commands / expression / dollar-in-variable / main.c
blobd1a16a7b88ddb90576ab1039d72c42c0e32c2bd4
1 // Make sure we correctly handle $ in variable names.
3 int main() {
4 // Some variables that might conflict with our variables below.
5 int __lldb_expr_result = 2;
6 int $$foo = 1;
7 int R0 = 2;
9 // Some variables with dollar signs that should work (and shadow
10 // any built-in LLDB variables).
11 int $__lldb_expr_result = 11;
12 int $foo = 12;
13 int $R0 = 13;
14 int $0 = 14;
16 return 0; // break here