Hannes Siebenhandl pushed to branch wip/fendor/revert-backtrace-decoder at Glasgow Haskell Compiler / GHC
Commits:
-
40f0ccb0
by fendor at 2025-10-18T20:15:43+02:00
2 changed files:
Changes:
| 1 | +import GHC.Internal.Control.Exception
|
|
| 2 | +import GHC.Internal.Control.Exception.Backtrace
|
|
| 3 | + |
|
| 4 | +main :: IO ()
|
|
| 5 | +main = do
|
|
| 6 | + setBacktraceMechanismState IPEBacktrace True
|
|
| 7 | + throwIO $ ErrorCall "Throw error" |
| 1 | 1 | test('T14532a', [], compile_and_run, [''])
|
| 2 | 2 | test('T14532b', [], compile_and_run, [''])
|
| 3 | +test('T26507', [extra_ways(['prof']), when(js_arch(), skip)], compile_and_run, [''])
|
|
| 4 | + |