Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Portable Python script across Python version | Serge Guelton | 2018-12-18 | 1 | -1/+1 |
| | | | | | | | | | | | In Python3, dict.items, dict.keys, dict.values, zip, map and filter no longer return lists, they create generator instead. The portability patch consists in forcing an extra `list` call if the result is actually used as a list. `map` are replaced by list comprehension and `filter` by filtered list comprehension. Differential Revision: https://reviews.llvm.org/D55197 llvm-svn: 349501 | ||||
* | Add some missing functions to builtins.py. | Eric Christopher | 2012-08-03 | 1 | -1/+4 |
| | | | | | | rdar://10112601 llvm-svn: 161227 | ||||
* | Add and describe a quick script to migrate gcc builtins that clang doesn't | Eric Christopher | 2010-10-25 | 1 | -0/+160 |
know about to the default APIs for x86 vector operations. llvm-svn: 117313 |