As described in: https://github.com/ARM-software/acle/pull/257
Details
Details
Diff Detail
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
clang/include/clang/Basic/arm_sve.td | ||
---|---|---|
16 | s/follow(eg.:2.x)/follow (e.g. 2.x)/ | |
clang/lib/CodeGen/CGBuiltin.cpp | ||
9856 | Please add SVE to the name, i.e. FormSVEMultiVectorResult That said, if Call is not a multi-vector builtin then it just returns the result value. So perhaps this is better named FormSVEBuiltinResult() ? | |
9856 | Can you add a doxygen comment to this function describing what it does? | |
9859–9861 | Can you implement this with an early exit, e.g. auto *StructTy = dyn_cast<StructType>(Call->getType()); if (!StructTy) return Call; auto *VTy = dyn_cast<ScalableVectorType>(StructTy->getTypeAtIndex(0U)); if (!VTy) return Call; ... | |
clang/utils/TableGen/SveEmitter.cpp | ||
864 | nit: "is never a type in itself" ? |
s/follow(eg.:2.x)/follow (e.g. 2.x)/