mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-08-15 22:28:18 +00:00
Remove unused argument.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@165636 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -1326,7 +1326,7 @@ public:
|
|||||||
|
|
||||||
/// @brief Determine if the call cannot unwind.
|
/// @brief Determine if the call cannot unwind.
|
||||||
bool doesNotThrow() const { return hasFnAttr(Attributes::NoUnwind); }
|
bool doesNotThrow() const { return hasFnAttr(Attributes::NoUnwind); }
|
||||||
void setDoesNotThrow(bool DoesNotThrow = true) {
|
void setDoesNotThrow() {
|
||||||
Attributes::Builder B;
|
Attributes::Builder B;
|
||||||
B.addAttribute(Attributes::NoUnwind);
|
B.addAttribute(Attributes::NoUnwind);
|
||||||
addAttribute(~0, Attributes::get(B));
|
addAttribute(~0, Attributes::get(B));
|
||||||
|
Reference in New Issue
Block a user