Ellis Hoag

Results 16 comments of Ellis Hoag

I think the https://reviews.llvm.org/D96109 might be the issue but I haven't had time to investigate.

I've done a bit of investigating for this bug. In the crash, `getFunctionLinkage()` eventually calls `isInlineDefinitionExternallyVisible()` on the declaration `extern void foo();` and then crashes because it doesn't have a...

> Thanks for looking at this. Shouldn't you also be checking for internal linkage explicitly here? Adding just that check "!FD->isExternallyVisible()" seems like it would work. There is no function...

I would like to deprecate `-forder-file-instrumentation`, but I didn't know how widespread its usage was. Temporal Profiling supports the same functionality but with better integration with existing tools and you...

It seems that `idb launch` and `idb install` don't work on iOS 17 devices. Luckily, `xcrun devicectl` does work on iOS 17 and it has `launch` and `install` commands. ```bash...

We are experimenting with running tomography on programs that might have measurements and control flow. Since the program comes from a user, we don't really have control over the names...

I think that would work. Maybe this requires a change to pyQuil, but would it be possible to generate a unique name that is not found in the user's program?...

@gottesmm Here is my temporary fix to unbreak our builds, but honestly it's just a guess. Can you see something wrong with this? ```diff diff --git a/lib/SILOptimizer/Analysis/RegionAnalysis.cpp b/lib/SILOptimizer/Analysis/RegionAnalysis.cpp index 16220c17a35..4a034bc383f...

This seems to be fixed by https://github.com/swiftlang/swift/pull/75596. Closing.

We've discovered a floating point miscompilation in XCode 16 when using `-ffp-contract=fast`. I found this patch that fixes the issue. @fhahn can we get this merged into the release branch?