Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | [VFABI] Remove unused variables in testcase, fix buildbot | Mikael Holmen | 2019-11-12 | 1 | -2/+0 |
| | | | | | | | | | | | | | E.g. the buildbot at http://lab.llvm.org:8011/builders/ppc64le-lld-multistage-test/builds/7259/steps/build-stage2-unified-tree/logs/stdio failed with /home/buildbots/ppc64le-lld-multistage-test/ppc64le-lld-multistage-test/llvm-project/llvm/unittests/Transforms/Utils/VFABIUtils.cpp:50:22: error: unused variable 'FnAttrs' [-Werror,-Wunused-variable] const AttributeSet FnAttrs = Attrs.getFnAttributes(); ^ 1 error generated. | ||||
* | [VFABI] Read/Write functions for the VFABI attribute. | Francesco Petrogalli | 2019-11-12 | 1 | -0/+55 |
The attribute is stored at the `FunctionIndex` attribute set, with the name "vector-function-abi-variant". The get/set methods of the attribute have assertion to verify that: 1. Each name in the attribute is a valid VFABI mangled name. 2. Each name in the attribute correspond to a function declared in the module. Differential Revision: https://reviews.llvm.org/D69976 |