search for: 10f7f6e3

Displaying 2 results from an estimated 2 matches for "10f7f6e3".

2011 Oct 12
0
[LLVMdev] Local variable information in scope
...___ > LLVM Developers mailing list > LLVMdev at cs.uiuc.edu http://llvm.cs.uiuc.edu > http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20111012/10f7f6e3/attachment.html>
2011 Oct 12
2
[LLVMdev] Local variable information in scope
Hi all,   Using "CodeGen/LexicalScopes" pass, I could collect scope information i.e. start and end line numbers.   I also want to collect information of variables within the scope.   For the below example:   int global; int func( int t) {    //scope 1   {      int a;      ....   }   return x; }   For "scope 1", I should be able to collect that "a" is a local