diff options
| author | Rafael Espindola <rafael.espindola@gmail.com> | 2011-05-25 03:44:17 +0000 |
|---|---|---|
| committer | Rafael Espindola <rafael.espindola@gmail.com> | 2011-05-25 03:44:17 +0000 |
| commit | fc9bae6f8bcbf65699cb30af3149906bd2f096f6 (patch) | |
| tree | 064e3929e3f815d336a4c6d646b955ccee0c78a0 /llvm/lib/VMCore | |
| parent | aac670c1c818f02f7d6026a036e2c624170a41c6 (diff) | |
| download | bcm5719-llvm-fc9bae6f8bcbf65699cb30af3149906bd2f096f6.tar.gz bcm5719-llvm-fc9bae6f8bcbf65699cb30af3149906bd2f096f6.zip | |
Replace the -unwind-tables option with a per function flag. This is more
LTO friendly as we can now correctly merge files compiled with or without
-fasynchronous-unwind-tables.
llvm-svn: 132033
Diffstat (limited to 'llvm/lib/VMCore')
| -rw-r--r-- | llvm/lib/VMCore/Attributes.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/llvm/lib/VMCore/Attributes.cpp b/llvm/lib/VMCore/Attributes.cpp index 92152a3b90a..ee257dbde5f 100644 --- a/llvm/lib/VMCore/Attributes.cpp +++ b/llvm/lib/VMCore/Attributes.cpp @@ -36,6 +36,8 @@ std::string Attribute::getAsString(Attributes Attrs) { Result += "noreturn "; if (Attrs & Attribute::NoUnwind) Result += "nounwind "; + if (Attrs & Attribute::UWTable) + Result += "uwtable "; if (Attrs & Attribute::InReg) Result += "inreg "; if (Attrs & Attribute::NoAlias) |

