summaryrefslogtreecommitdiffstats
path: root/lldb/test/Shell/SymbolFile/PDB/Inputs/VariablesLocationsTest.cpp
blob: 7b7180a3ec43b08160821dec17f7fe53815b9a10 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
int g_var = 2222;

void __fastcall foo(short arg_0, float arg_1) {
  char loc_0 = 'x';
  double loc_1 = 0.5678;
}

__declspec(align(128)) struct S {
  int a = 1234;
};

void bar(int arg_0) {
 S loc_0;
 int loc_1 = 5678;
}


int main(int argc, char *argv[]) {
  bool loc_0 = true;
  int loc_1 = 3333;

  foo(1111, 0.1234);
  bar(22);

  return 0;
}
OpenPOWER on IntegriCloud