| author | |
| committer | |
| log | ab154be7f0a89b271686d740f7e50545414a6024 |
| tree | e74b9b24138b6cdbc3d0bc8d112ea2a958e0bf47 |
| parent | fab5df4028f686a69330982b41ee880b5bdd4e04 |
| signature |
The DXIL documentation claims 32-bit pointers:
https://github.com/microsoft/DirectXShaderCompiler/blob/main/docs/DXIL.rst#memory-accesses
Despite this, Clang considers pointers 64-bit when targeting it.1 files changed, 1 insertions(+), 1 deletions(-)
lib/std/Target.zig+1-1| ... | @@ -1854,12 +1854,12 @@ pub fn ptrBitWidth_cpu_abi(cpu: Cpu, abi: Abi) u16 { | ... | @@ -1854,12 +1854,12 @@ pub fn ptrBitWidth_cpu_abi(cpu: Cpu, abi: Abi) u16 { |
| 1854 | .wasm32, | 1854 | .wasm32, |
| 1855 | .spirv32, | 1855 | .spirv32, |
| 1856 | .loongarch32, | 1856 | .loongarch32, |
| 1857 | .dxil, | ||
| 1858 | .xtensa, | 1857 | .xtensa, |
| 1859 | => 32, | 1858 | => 32, |
| 1860 | 1859 | ||
| 1861 | .aarch64, | 1860 | .aarch64, |
| 1862 | .aarch64_be, | 1861 | .aarch64_be, |
| 1862 | .dxil, | ||
| 1863 | .mips64, | 1863 | .mips64, |
| 1864 | .mips64el, | 1864 | .mips64el, |
| 1865 | .powerpc64, | 1865 | .powerpc64, |