shader_ir: Address feedback to avoid UB in bit casting
This commit is contained in:
parent
946c86f0bb
commit
d4fae3a699
|
@ -4,6 +4,7 @@
|
|||
|
||||
#pragma once
|
||||
|
||||
#include <cstring>
|
||||
#include <map>
|
||||
#include <set>
|
||||
#include <string>
|
||||
|
@ -606,8 +607,9 @@ private:
|
|||
}
|
||||
/// Creates a f32 immediate
|
||||
Node Immediate(f32 value) {
|
||||
// TODO(Rodrigo): Replace this with bit_cast when C++20 releases
|
||||
return Immediate(*reinterpret_cast<const u32*>(&value));
|
||||
u32 integral;
|
||||
std::memcpy(&integral, &value, sizeof(u32));
|
||||
return Immediate(integral);
|
||||
}
|
||||
|
||||
/// Generates a node for a passed register.
|
||||
|
|
Reference in New Issue