Andrey Penechko

Results 11 issues of Andrey Penechko

Fixes incorrectly aligned error cursor for cases where source line contains tab characters.

Needs Work
Bug Fix
Needs Rebase
stalled

Each block needs handlers for intercations There should be registry for such handlers. Maybe in block manager.

Crash occurs on these lines: https://github.com/biozic/d2sqlite3/blob/master/source/d2sqlite3.d#L934 https://github.com/biozic/d2sqlite3/blob/master/source/d2sqlite3.d#L940 Crashes with and without `assertThrown` Happens with master and 0.8.1.

Unsure

Discussed in https://github.com/ldc-developers/ldc/discussions/4355 Open questions: - pragma name. Is `LDC_musttail` what we want? Or we should use `musttail`? - Need to add tests.

When I compiled a test program with VS2019 I got linker errors ``` ldc_rt.fuzzer.lib(FuzzerDriver.cpp.obj) : error LNK2019: unresolved external symbol __std_find_trivial_1 referenced in function "int __cdecl fuzzer::CleanseCrashInput(class std::vector const &,struct...

sanitizers

When widget gets resized and its size is greater than some value pixels out of rectangle are being drawn ![bug1](https://f.cloud.github.com/assets/1129910/793035/53d80a20-ebd9-11e2-9c6c-2d70aa2f3611.png) Possible reasons: - Shader bug (most likely) - Driver bug...

bug

I'm trying to figure out how to start multiple threads and syncronize them with a mutex that uses atomics and wait/notify. I made a minimal example that does not work:...

On x86_64: https://godbolt.org/z/dEaaqPh7v ```d import ldc.attributes; import ldc.llvmasm; @naked long spawnLinuxThread1(void* data) { return __asm!long("syscall", "={eax}, {rax}, {rdi}, {rsi}", 56, 0x50f00, data); } ``` produces: ```asm mov rsi, qword ptr...