mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-13 22:58:50 +00:00
Add the NoUnwind function attribute.
llvm-svn: 35260
This commit is contained in:
parent
620297a20c
commit
a2d8b5e7a1
@ -1073,6 +1073,8 @@ std::string FunctionType::getParamAttrsText(ParameterAttributes Attr) {
|
|||||||
Result += "sext ";
|
Result += "sext ";
|
||||||
if (Attr & NoReturnAttribute)
|
if (Attr & NoReturnAttribute)
|
||||||
Result += "noreturn ";
|
Result += "noreturn ";
|
||||||
|
if (Attr & NoUnwindAttribute)
|
||||||
|
Result += "nounwind ";
|
||||||
if (Attr & InRegAttribute)
|
if (Attr & InRegAttribute)
|
||||||
Result += "inreg ";
|
Result += "inreg ";
|
||||||
if (Attr & StructRetAttribute)
|
if (Attr & StructRetAttribute)
|
||||||
|
Loading…
Reference in New Issue
Block a user