diff options
| author | Lioncash <mathew1800@gmail.com> | 2020-08-11 11:08:10 -0400 |
|---|---|---|
| committer | Lioncash <mathew1800@gmail.com> | 2020-08-13 14:19:08 -0400 |
| commit | b724a4d90c2dcff0e800f7ab630b6ad0d5be1e58 (patch) | |
| tree | 8cf24f11888d563e7f00f79f5023876b9752c107 /src/video_core/shader/decode/memory.cpp | |
| parent | 4605e4d6ff1523bf43b3803b9db95e64602f4099 (diff) | |
General: Tidy up clang-format warnings part 2
Diffstat (limited to 'src/video_core/shader/decode/memory.cpp')
| -rw-r--r-- | src/video_core/shader/decode/memory.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/video_core/shader/decode/memory.cpp b/src/video_core/shader/decode/memory.cpp index 63adbc4a3..e4739394d 100644 --- a/src/video_core/shader/decode/memory.cpp +++ b/src/video_core/shader/decode/memory.cpp @@ -471,9 +471,9 @@ std::tuple<Node, Node, GlobalMemoryBase> ShaderIR::TrackGlobalMemory(NodeBlock& const auto [base_address, index, offset] = TrackCbuf(addr_register, global_code, static_cast<s64>(global_code.size())); - ASSERT_OR_EXECUTE_MSG(base_address != nullptr, - { return std::make_tuple(nullptr, nullptr, GlobalMemoryBase{}); }, - "Global memory tracking failed"); + ASSERT_OR_EXECUTE_MSG( + base_address != nullptr, { return std::make_tuple(nullptr, nullptr, GlobalMemoryBase{}); }, + "Global memory tracking failed"); bb.push_back(Comment(fmt::format("Base address is c[0x{:x}][0x{:x}]", index, offset))); |
