mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-15 21:24:00 +00:00
Commit first round work of PR1373. "noalias" is now fully supported in
VMCore, BitCode, and Assembly. Documentation and test case paramattrs.ll updated also. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@37432 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -473,6 +473,8 @@ CppWriter::printTypeInternal(const Type* Ty) {
|
||||
Out << " | ParamAttr::SExt";
|
||||
if (attrs & ParamAttr::ZExt)
|
||||
Out << " | ParamAttr::ZExt";
|
||||
if (attrs & ParamAttr::NoAlias)
|
||||
Out << " | ParamAttr::NoAlias";
|
||||
if (attrs & ParamAttr::StructRet)
|
||||
Out << " | ParamAttr::StructRet";
|
||||
if (attrs & ParamAttr::InReg)
|
||||
|
Reference in New Issue
Block a user