diff options
| author | 2021-05-25 02:34:08 -0300 | |
|---|---|---|
| committer | 2021-07-22 21:51:33 -0400 | |
| commit | 379b305b4bc09799d53981fa6e5d9cbe6be99561 (patch) | |
| tree | ad68c6c457f76ba38249fdb39abbdb7b5cdbea26 /src/shader_recompiler/backend/glasm/emit_glasm.cpp | |
| parent | glasm: Catch more register leaks (diff) | |
| download | yuzu-379b305b4bc09799d53981fa6e5d9cbe6be99561.tar.gz yuzu-379b305b4bc09799d53981fa6e5d9cbe6be99561.tar.xz yuzu-379b305b4bc09799d53981fa6e5d9cbe6be99561.zip | |
glasm: Throw when there are register leaks
Diffstat (limited to 'src/shader_recompiler/backend/glasm/emit_glasm.cpp')
| -rw-r--r-- | src/shader_recompiler/backend/glasm/emit_glasm.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/shader_recompiler/backend/glasm/emit_glasm.cpp b/src/shader_recompiler/backend/glasm/emit_glasm.cpp index 4aa3682c2..0e9dc06a6 100644 --- a/src/shader_recompiler/backend/glasm/emit_glasm.cpp +++ b/src/shader_recompiler/backend/glasm/emit_glasm.cpp | |||
| @@ -271,6 +271,9 @@ void EmitCode(EmitContext& ctx, const IR::Program& program) { | |||
| 271 | break; | 271 | break; |
| 272 | } | 272 | } |
| 273 | } | 273 | } |
| 274 | if (!ctx.reg_alloc.IsEmpty()) { | ||
| 275 | throw LogicError("Register allocator is not empty"); | ||
| 276 | } | ||
| 274 | } | 277 | } |
| 275 | 278 | ||
| 276 | void SetupOptions(const IR::Program& program, const Profile& profile, | 279 | void SetupOptions(const IR::Program& program, const Profile& profile, |