Remove unused argument.

llvm-svn: 165636
This commit is contained in:
Bill Wendling 2012-10-10 18:02:57 +00:00
parent d8665b3d1a
commit 707953d025
1 changed files with 1 additions and 1 deletions

View File

@ -1326,7 +1326,7 @@ public:
/// @brief Determine if the call cannot unwind.
bool doesNotThrow() const { return hasFnAttr(Attributes::NoUnwind); }
void setDoesNotThrow(bool DoesNotThrow = true) {
void setDoesNotThrow() {
Attributes::Builder B;
B.addAttribute(Attributes::NoUnwind);
addAttribute(~0, Attributes::get(B));