-
Notifications
You must be signed in to change notification settings - Fork 252
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
arm/neon abs: negating INT_MIN is undefined behavior
- So cast to unsigned int before flipping sign, and then cast back to a signed int LLVM 19 is making this more prominant: llvm/llvm-project#82112 (comment) But this was already visible in earlier clang versions with `-O2` #901 - gh-actions: resume testing emscripten using the 'tip of tree' ("tot") builds. - gh-actions: add clang-17 "-O2" build to confirm the fix
- Loading branch information
Showing
3 changed files
with
24 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
[binaries] | ||
c = 'i686-linux-gnu-gcc-14' | ||
cpp = 'i686-linux-gnu-g++-14' | ||
ar = 'i686-linux-gnu-ar' | ||
strip = 'i686-linux-gnu-strip' | ||
objcopy = 'i686-linux-gnu-objcopy' | ||
ld = 'i686-linux-gnu-ld' | ||
|
||
[properties] | ||
c_args = ['-Wextra', '-Werror', '-march=prescott'] | ||
cpp_args = ['-Wextra', '-Werror', '-march=prescott'] | ||
|
||
[host_machine] | ||
system = 'linux' | ||
cpu_family = 'x86' | ||
cpu = 'prescott' | ||
endian = 'little' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters