Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix always_inline 'target' compatibility check code for Lambdas | Erich Keane | 2019-08-28 | 1 | -1/+45 |
| | | | | | | | | | The previous version of this used CurFuncDecl in CodeGenFunction, however this doesn't include lambdas. However, CurCodeDecl DOES. Switch the check to use CurCodeDecl so that the actual function being emitted gets checked, preventing an error in ISEL. llvm-svn: 370261 | ||||
* | Ensure Target Features always_inline error happens in C++ cases. | Erich Keane | 2019-06-21 | 1 | -0/+17 |
A handful of C++ cases as reported in PR42352 didn't actually give an error when always_inlining with a different target feature list. This resulted in broken IR. llvm-svn: 364109 |