Skip to content

Commit a203f04

Browse files
Seelengrabmaleadt
andauthored
Drop prefix from explicitly set entrypoint (#423)
Co-authored-by: Sukera <Seelengrab@users.noreply.github.com> Co-authored-by: Tim Besard <tim.besard@gmail.com>
1 parent d6384c7 commit a203f04

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
strategy:
4949
fail-fast: false
5050
matrix:
51-
branch: ['release-1.7', 'release-1.8', 'backports-release-1.9', 'master']
51+
branch: ['release-1.7', 'release-1.8', 'release-1.9', 'master']
5252
os: [ubuntu-latest, macOS-latest]
5353
arch: [x64]
5454
steps:

src/irgen.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ function irgen(@nospecialize(job::CompilerJob); ctx::JuliaContextType)
6060

6161
# rename and process the entry point
6262
if job.config.name !== nothing
63-
LLVM.name!(entry, safe_name(string("julia_", job.config.name)))
63+
LLVM.name!(entry, safe_name(job.config.name))
6464
elseif job.config.kernel
6565
LLVM.name!(entry, mangle_sig(job.source.specTypes))
6666
end

0 commit comments

Comments
 (0)