├── .gitignore ├── README.md ├── bugs ├── FIXED-llvm-integer-bug │ ├── backtrace.txt │ ├── vfprintf-229393.c │ └── vfprintf-229393.sh ├── FIXED-llvm-not-natively-supported-assert │ ├── backtrace.txt │ ├── ldtoa-efa93e.c │ └── ldtoa-efa93e.sh ├── FIXED-llvm-unexpected-illegal-type │ ├── backtrace.txt │ ├── sf_lrint-5d1855.c │ ├── sf_lrint-5d1855.sh │ └── testcase.c ├── FIXED-llvm-unsupported-softenfloatres-opcode-assert │ ├── backtrace.txt │ ├── vfscanf-e061d8.c │ └── vfscanf-e061d8.sh ├── README.md └── llvm-segfault │ ├── cephes_subrf-f702f4.c │ ├── cephes_subrf-f702f4.sh │ └── llvm-backtrace.txt ├── erratum └── unofficial-erratum.md └── patches ├── clang-short-long-double.patch └── llvm-add-ps2-target.patch /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ravenslofty/ps2-clang-patches/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ravenslofty/ps2-clang-patches/HEAD/README.md -------------------------------------------------------------------------------- /bugs/FIXED-llvm-integer-bug/backtrace.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ravenslofty/ps2-clang-patches/HEAD/bugs/FIXED-llvm-integer-bug/backtrace.txt -------------------------------------------------------------------------------- /bugs/FIXED-llvm-integer-bug/vfprintf-229393.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ravenslofty/ps2-clang-patches/HEAD/bugs/FIXED-llvm-integer-bug/vfprintf-229393.c -------------------------------------------------------------------------------- /bugs/FIXED-llvm-integer-bug/vfprintf-229393.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ravenslofty/ps2-clang-patches/HEAD/bugs/FIXED-llvm-integer-bug/vfprintf-229393.sh -------------------------------------------------------------------------------- /bugs/FIXED-llvm-not-natively-supported-assert/backtrace.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ravenslofty/ps2-clang-patches/HEAD/bugs/FIXED-llvm-not-natively-supported-assert/backtrace.txt -------------------------------------------------------------------------------- /bugs/FIXED-llvm-not-natively-supported-assert/ldtoa-efa93e.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ravenslofty/ps2-clang-patches/HEAD/bugs/FIXED-llvm-not-natively-supported-assert/ldtoa-efa93e.c -------------------------------------------------------------------------------- /bugs/FIXED-llvm-not-natively-supported-assert/ldtoa-efa93e.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ravenslofty/ps2-clang-patches/HEAD/bugs/FIXED-llvm-not-natively-supported-assert/ldtoa-efa93e.sh -------------------------------------------------------------------------------- /bugs/FIXED-llvm-unexpected-illegal-type/backtrace.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ravenslofty/ps2-clang-patches/HEAD/bugs/FIXED-llvm-unexpected-illegal-type/backtrace.txt -------------------------------------------------------------------------------- /bugs/FIXED-llvm-unexpected-illegal-type/sf_lrint-5d1855.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ravenslofty/ps2-clang-patches/HEAD/bugs/FIXED-llvm-unexpected-illegal-type/sf_lrint-5d1855.c -------------------------------------------------------------------------------- /bugs/FIXED-llvm-unexpected-illegal-type/sf_lrint-5d1855.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ravenslofty/ps2-clang-patches/HEAD/bugs/FIXED-llvm-unexpected-illegal-type/sf_lrint-5d1855.sh -------------------------------------------------------------------------------- /bugs/FIXED-llvm-unexpected-illegal-type/testcase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ravenslofty/ps2-clang-patches/HEAD/bugs/FIXED-llvm-unexpected-illegal-type/testcase.c -------------------------------------------------------------------------------- /bugs/FIXED-llvm-unsupported-softenfloatres-opcode-assert/backtrace.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ravenslofty/ps2-clang-patches/HEAD/bugs/FIXED-llvm-unsupported-softenfloatres-opcode-assert/backtrace.txt -------------------------------------------------------------------------------- /bugs/FIXED-llvm-unsupported-softenfloatres-opcode-assert/vfscanf-e061d8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ravenslofty/ps2-clang-patches/HEAD/bugs/FIXED-llvm-unsupported-softenfloatres-opcode-assert/vfscanf-e061d8.c -------------------------------------------------------------------------------- /bugs/FIXED-llvm-unsupported-softenfloatres-opcode-assert/vfscanf-e061d8.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ravenslofty/ps2-clang-patches/HEAD/bugs/FIXED-llvm-unsupported-softenfloatres-opcode-assert/vfscanf-e061d8.sh -------------------------------------------------------------------------------- /bugs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ravenslofty/ps2-clang-patches/HEAD/bugs/README.md -------------------------------------------------------------------------------- /bugs/llvm-segfault/cephes_subrf-f702f4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ravenslofty/ps2-clang-patches/HEAD/bugs/llvm-segfault/cephes_subrf-f702f4.c -------------------------------------------------------------------------------- /bugs/llvm-segfault/cephes_subrf-f702f4.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ravenslofty/ps2-clang-patches/HEAD/bugs/llvm-segfault/cephes_subrf-f702f4.sh -------------------------------------------------------------------------------- /bugs/llvm-segfault/llvm-backtrace.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ravenslofty/ps2-clang-patches/HEAD/bugs/llvm-segfault/llvm-backtrace.txt -------------------------------------------------------------------------------- /erratum/unofficial-erratum.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ravenslofty/ps2-clang-patches/HEAD/erratum/unofficial-erratum.md -------------------------------------------------------------------------------- /patches/clang-short-long-double.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ravenslofty/ps2-clang-patches/HEAD/patches/clang-short-long-double.patch -------------------------------------------------------------------------------- /patches/llvm-add-ps2-target.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ravenslofty/ps2-clang-patches/HEAD/patches/llvm-add-ps2-target.patch --------------------------------------------------------------------------------