Skip to content

Unwinding failure with Node v24.11.1 (current LTS, both amd64 and arm64) #981

@christos68k

Description

@christos68k

Summary

I've noticed this after executing some test workloads for an unrelated issue. I also tested the following Node versions where unwinding works (both arm64 and amd64):

  1. v20.19.1
  2. v22.21.1
  3. v23.11.1

To reproduce

$ nvm install v24.11.1
$ node --version
v24.11.1
$ node hello3.js

hello3.js

function bar(a, s) {
	a(s)
	//ads
}

function foo() {
	bar(a, "Hello world!")
}

console.trace("I am here");
a = console.log
while (1) {
	foo()
}

Expected output

Image

Actual output

Image

Metadata

Metadata

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions