diff options
| author | 2018-11-26 23:19:40 -0500 | |
|---|---|---|
| committer | 2018-11-26 23:19:40 -0500 | |
| commit | 11c17465d812fce65c4b2ba79ea84d7f43a7328f (patch) | |
| tree | 7fd4c5fb9fb27be6e634f924e3f94a43a125bb19 /src | |
| parent | Merge pull request #1805 from lioncash/resource (diff) | |
| parent | gdbstub: Silence value truncation warning within FpuWrite() (diff) | |
| download | yuzu-11c17465d812fce65c4b2ba79ea84d7f43a7328f.tar.gz yuzu-11c17465d812fce65c4b2ba79ea84d7f43a7328f.tar.xz yuzu-11c17465d812fce65c4b2ba79ea84d7f43a7328f.zip | |
Merge pull request #1804 from lioncash/cast
gdbstub: Silence value truncation warning within FpuWrite()
Diffstat (limited to 'src')
| -rw-r--r-- | src/core/gdbstub/gdbstub.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/gdbstub/gdbstub.cpp b/src/core/gdbstub/gdbstub.cpp index 687dea409..e6b5171ee 100644 --- a/src/core/gdbstub/gdbstub.cpp +++ b/src/core/gdbstub/gdbstub.cpp | |||
| @@ -282,7 +282,7 @@ static void FpuWrite(std::size_t id, u128 val, Kernel::Thread* thread = nullptr) | |||
| 282 | if (id >= UC_ARM64_REG_Q0 && id < FPCR_REGISTER) { | 282 | if (id >= UC_ARM64_REG_Q0 && id < FPCR_REGISTER) { |
| 283 | thread_context.vector_registers[id - UC_ARM64_REG_Q0] = val; | 283 | thread_context.vector_registers[id - UC_ARM64_REG_Q0] = val; |
| 284 | } else if (id == FPCR_REGISTER) { | 284 | } else if (id == FPCR_REGISTER) { |
| 285 | thread_context.fpcr = val[0]; | 285 | thread_context.fpcr = static_cast<u32>(val[0]); |
| 286 | } | 286 | } |
| 287 | } | 287 | } |
| 288 | 288 | ||