diff options
author | bunnei <bunneidev@gmail.com> | 2023-01-28 14:00:11 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-28 14:00:11 -0800 |
commit | 159aab9a97529c85b114794b73911311a6b94abc (patch) | |
tree | 6b771b611f5fe06ab4ff7a7bd5c984b469d0c3cb /src/shader_recompiler/frontend/ir/ir_emitter.cpp | |
parent | cd138540e2ac1424698d0599d009e46264f92878 (diff) | |
parent | 93cc6e4d992d60a7e8fe73d9ab062e1187775ec5 (diff) |
Merge pull request #9682 from ameerj/shader-s32
shader_recompiler: Remove S32 IR type
Diffstat (limited to 'src/shader_recompiler/frontend/ir/ir_emitter.cpp')
-rw-r--r-- | src/shader_recompiler/frontend/ir/ir_emitter.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/shader_recompiler/frontend/ir/ir_emitter.cpp b/src/shader_recompiler/frontend/ir/ir_emitter.cpp index eb2e49a688..430797d231 100644 --- a/src/shader_recompiler/frontend/ir/ir_emitter.cpp +++ b/src/shader_recompiler/frontend/ir/ir_emitter.cpp @@ -704,11 +704,6 @@ IR::U32 IREmitter::BitCast<IR::U32, IR::F32>(const IR::F32& value) { } template <> -IR::S32 IREmitter::BitCast<IR::S32, IR::F32>(const IR::F32& value) { - return Inst<IR::S32>(Opcode::BitCastS32F32, value); -} - -template <> IR::F32 IREmitter::BitCast<IR::F32, IR::U32>(const IR::U32& value) { return Inst<IR::F32>(Opcode::BitCastF32U32, value); } |