Changes in directory llvm/lib/VMCore:
Type.cpp updated: 1.176 -> 1.177 --- Log message: Add the NoUnwind function attribute. --- Diffs of the changes: (+2 -0) Type.cpp | 2 ++ 1 files changed, 2 insertions(+) Index: llvm/lib/VMCore/Type.cpp diff -u llvm/lib/VMCore/Type.cpp:1.176 llvm/lib/VMCore/Type.cpp:1.177 --- llvm/lib/VMCore/Type.cpp:1.176 Wed Feb 28 22:02:06 2007 +++ llvm/lib/VMCore/Type.cpp Wed Mar 21 21:14:48 2007 @@ -1073,6 +1073,8 @@ Result += "sext "; if (Attr & NoReturnAttribute) Result += "noreturn "; + if (Attr & NoUnwindAttribute) + Result += "nounwind "; if (Attr & InRegAttribute) Result += "inreg "; if (Attr & StructRetAttribute) _______________________________________________ llvm-commits mailing list llvm-commits@cs.uiuc.edu http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits