Skip to content

Commit bdcda72

Browse files
targosV8 LUCI CQ
authored and
V8 LUCI CQ
committed
[platform] Fix compilation on 32-bit Windows
Use `extern "C"` to declare the __readfsdword function. Fixes error C2732 in the Node.js CI. Bug: chromium:796644 Change-Id: If261985e65bfdade53ce06ff28afe0e2db402f7a Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3086457 Reviewed-by: Clemens Backes <[email protected]> Commit-Queue: Michaël Zasso <[email protected]> Cr-Commit-Position: refs/heads/master@{#76259}
1 parent 5798623 commit bdcda72

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/base/platform/platform.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
// And, intrin.h is a very expensive header that we want to avoid here, and
4848
// the cheaper intrin0.h is not available for all build configurations. That is
4949
// why we declare this intrinsic.
50-
unsigned long __readfsdword(unsigned long); // NOLINT(runtime/int)
50+
extern "C" unsigned long __readfsdword(unsigned long); // NOLINT(runtime/int)
5151
#endif // V8_CC_MSVC && V8_HOST_ARCH_IA32
5252
#endif // V8_NO_FAST_TLS
5353

0 commit comments

Comments
 (0)