diff options
Diffstat (limited to 'include/llvm/IR/Function.h')
| -rw-r--r-- | include/llvm/IR/Function.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/IR/Function.h b/include/llvm/IR/Function.h index c8d6b0776fbf..02e3ecc8e27f 100644 --- a/include/llvm/IR/Function.h +++ b/include/llvm/IR/Function.h @@ -557,7 +557,7 @@ public: /// True if this function needs an unwind table. bool needsUnwindTableEntry() const { - return hasUWTable() || !doesNotThrow(); + return hasUWTable() || !doesNotThrow() || hasPersonalityFn(); } /// Determine if the function returns a structure through first |
