Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | try to fix InterfaceStubs/lambda.cpp on Windows after bd8c8827d96f0 | Nico Weber | 2020-01-13 | 1 | -1/+2 |
| | |||||
* | [clang][IFS][test] Fixing mangled name of a test for Darwin. | Puyan Lotfi | 2020-01-13 | 1 | -1/+1 |
| | | | | | | | Darwin adds an extra '_' before every C/global function mangled name and because of this, this test was breaking on Darwin. This is a fix for commit: https://reviews.llvm.org/D71301 | ||||
* | [clang][IFS] Prevent Clang-IFS from Leaking symbols from inside a block. | Puyan Lotfi | 2020-01-13 | 1 | -0/+10 |
Built libdispatch with clang interface stubs. Ran into some block related issues. Basically VarDecl symbols can leak out because I wasn't checking the case where a VarDecl is contained inside a BlockDecl (versus a method or function). This patch checks that a VarDecl is not a child decl of a BlockDecl. This patch also does something very similar for c++ lambdas as well. Differential Revision: https://reviews.llvm.org/D71301 |