@@ -1849,7 +1849,7 @@ multi_inlining1(a::Int, b::Int) = @noinline func_mul_int(a, b)
18491849let i:: Int , continue_:: Bool
18501850 interp = Compiler. NativeInterpreter ()
18511851 # check if callsite `@noinline` annotation works
1852- ir, = only (Base. code_ircode (multi_inlining1, (Int,Int); optimize_until= " inlining " , interp))
1852+ ir, = only (Base. code_ircode (multi_inlining1, (Int,Int); optimize_until= " Inlining " , interp))
18531853 i = findfirst (isinvoke (:func_mul_int ), ir. stmts. stmt)
18541854 @test i != = nothing
18551855 # now delete the callsite flag, and see the second inlining pass can inline the call
@@ -1873,7 +1873,7 @@ multi_inlining2(a::Int, b::Int) = call_func_mul_int(a, b)
18731873let i:: Int , continue_:: Bool
18741874 interp = Compiler. NativeInterpreter ()
18751875 # check if callsite `@noinline` annotation works
1876- ir, = only (Base. code_ircode (multi_inlining2, (Int,Int); optimize_until= " inlining " , interp))
1876+ ir, = only (Base. code_ircode (multi_inlining2, (Int,Int); optimize_until= " Inlining " , interp))
18771877 i = findfirst (isinvoke (:func_mul_int ), ir. stmts. stmt)
18781878 @test i != = nothing
18791879 # now delete the callsite flag, and see the second inlining pass can inline the call
0 commit comments