Skip to content

Commit 0904a12

Browse files
vtjnashKristofferC
authored andcommitted
atomics: fix some minor issues (#42335)
(cherry picked from commit 1e6c269)
1 parent 2845793 commit 0904a12

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
@@ -1302,7 +1302,7 @@ ifeq ($(OS), WINNT)
13021302
ifneq ($(USEMSVC), 1)
13031303
HAVE_SSP := 1
13041304
OSLIBS += -Wl,--export-all-symbols -Wl,--version-script=$(JULIAHOME)/src/julia.expmap \
1305-
$(NO_WHOLE_ARCHIVE) -lpsapi -lkernel32 -lws2_32 -liphlpapi -lwinmm -ldbghelp -luserenv -lsecur32
1305+
$(NO_WHOLE_ARCHIVE) -lpsapi -lkernel32 -lws2_32 -liphlpapi -lwinmm -ldbghelp -luserenv -lsecur32 -latomic
13061306
JLDFLAGS := -Wl,--stack,8388608
13071307
ifeq ($(ARCH),i686)
13081308
JLDFLAGS += -Wl,--large-address-aware

src/cgutils.cpp

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

0 commit comments

Comments
 (0)