Skip to content

Commit 1e6c269

Browse files
authored
atomics: fix some minor issues (#42335)
1 parent 5bf1ca5 commit 1e6c269

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Make.inc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1312,7 +1312,7 @@ ifeq ($(OS), WINNT)
13121312
ifneq ($(USEMSVC), 1)
13131313
HAVE_SSP := 1
13141314
OSLIBS += -Wl,--export-all-symbols -Wl,--version-script=$(JULIAHOME)/src/julia.expmap \
1315-
$(NO_WHOLE_ARCHIVE) -lpsapi -lkernel32 -lws2_32 -liphlpapi -lwinmm -ldbghelp -luserenv -lsecur32
1315+
$(NO_WHOLE_ARCHIVE) -lpsapi -lkernel32 -lws2_32 -liphlpapi -lwinmm -ldbghelp -luserenv -lsecur32 -latomic
13161316
JLDFLAGS := -Wl,--stack,8388608
13171317
ifeq ($(ARCH),i686)
13181318
JLDFLAGS += -Wl,--large-address-aware

src/cgutils.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1564,7 +1564,7 @@ static jl_cgval_t typed_store(jl_codectx_t &ctx,
15641564
ret = mark_julia_type(ctx, callval, true, jl_any_type);
15651565
}
15661566
if (!jl_subtype(ret.typ, jltype)) {
1567-
emit_typecheck(ctx, ret, jltype, fname + "typed_store");
1567+
emit_typecheck(ctx, ret, jltype, fname);
15681568
ret = update_julia_type(ctx, ret, jltype);
15691569
}
15701570
return ret;

0 commit comments

Comments
 (0)