• This project
    • Loading...
  • Sign in

2020-1-capstone-design1 / JJS_Project1

%ea%b7%b8%eb%a6%bc1
Go to a project
Toggle navigation Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Snippets
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • JJS_Project1
  • ..
  • Inputs
  • VariablesLocationsTest.cpp
  • 박우진's avatar
    Add LLVM Codes · 942e8c25
    942e8c25
    박우진 authored 2020-04-22 16:07:25 +0900
VariablesLocationsTest.cpp 348 Bytes
Raw Blame History Permalink
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;
}