diff options
Diffstat (limited to 'src/ir/branch-utils.h')
-rw-r--r-- | src/ir/branch-utils.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ir/branch-utils.h b/src/ir/branch-utils.h index 8a4f02a58..826483b09 100644 --- a/src/ir/branch-utils.h +++ b/src/ir/branch-utils.h @@ -136,7 +136,7 @@ inline bool replacePossibleTarget(Expression* branch, Name from, Name to) { } // Replace all delegate targets within the given AST. -inline void replaceDelegateTargets(Expression* ast, Name from, Name to) { +inline void replaceExceptionTargets(Expression* ast, Name from, Name to) { struct Replacer : public PostWalker<Replacer, UnifiedExpressionVisitor<Replacer>> { Name from, to; |