Skip to content

Commit d6ae9b3

Browse files
committed
fix name convention
1 parent 426cce6 commit d6ae9b3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/CompilerPluginTools.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ export
5151
inline_const!,
5252
permute_stmts!,
5353
const_invoke!,
54-
contains_const_invoke!,
54+
contains_const_invoke,
5555
finish,
5656
IntrinsicError,
5757
# utils

src/passes.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ function const_invoke!(f, ir::IRCode, ref::GlobalRef)
203203
return ir
204204
end
205205

206-
function contains_const_invoke!(ir::IRCode, ref::GlobalRef)
206+
function contains_const_invoke(ir::IRCode, ref::GlobalRef)
207207
for i in 1:length(ir.stmts)
208208
stmt = ir.stmts[i][:inst]
209209

0 commit comments

Comments
 (0)