Skip to content

Commit

Permalink
[arm64][msvc] fix arm64 build on msvc
Browse files Browse the repository at this point in the history
See: nodejs/node#35415 (comment)

Co-authored-by: Richard Townsend <richard.townsend@arm.com>
Change-Id: I440644f55dc8c8ec3108e5015ebbce2829dd8207
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2479602
Reviewed-by: Jakob Gruber <jgruber@chromium.org>
Commit-Queue: Jakob Gruber <jgruber@chromium.org>
Auto-Submit: Jiawen Geng <technicalcute@gmail.com>
Cr-Commit-Position: refs/heads/master@{#70648}
  • Loading branch information
2 people authored and Commit Bot committed Oct 20, 2020
1 parent 3773e46 commit 45e4977
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/snapshot/embedded/platform-embedded-file-writer-win.cc
Original file line number Diff line number Diff line change
Expand Up @@ -485,7 +485,7 @@ void PlatformEmbeddedFileWriterWin::Comment(const char* string) {

void PlatformEmbeddedFileWriterWin::DeclareLabel(const char* name) {
if (target_arch_ == EmbeddedTargetArch::kArm64) {
fprintf(fp_, "%s%s\t", SYMBOL_PREFIX, name);
fprintf(fp_, "%s%s\n", SYMBOL_PREFIX, name);

} else {
fprintf(fp_, "%s%s LABEL %s\n", SYMBOL_PREFIX, name,
Expand Down

0 comments on commit 45e4977

Please sign in to comment.