mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-01-27 03:48:33 +00:00
Add the NoUnwind function attribute.
llvm-svn: 35260
This commit is contained in:
parent
32096786f1
commit
478dcd0239
@ -1073,6 +1073,8 @@ std::string FunctionType::getParamAttrsText(ParameterAttributes Attr) {
|
||||
Result += "sext ";
|
||||
if (Attr & NoReturnAttribute)
|
||||
Result += "noreturn ";
|
||||
if (Attr & NoUnwindAttribute)
|
||||
Result += "nounwind ";
|
||||
if (Attr & InRegAttribute)
|
||||
Result += "inreg ";
|
||||
if (Attr & StructRetAttribute)
|
||||
|
Loading…
x
Reference in New Issue
Block a user