mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-04 02:24:29 +00:00
Mark empty default constructors as =default if it makes the type POD
NFC git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@234694 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -41,9 +41,9 @@ struct PointerOffsetPair {
|
||||
};
|
||||
|
||||
struct LoadPOPPair {
|
||||
LoadPOPPair() = default;
|
||||
LoadPOPPair(LoadInst *L, PointerOffsetPair P, unsigned O)
|
||||
: Load(L), POP(P), InsertOrder(O) {}
|
||||
LoadPOPPair() {}
|
||||
LoadInst *Load;
|
||||
PointerOffsetPair POP;
|
||||
/// \brief The new load needs to be created before the first load in IR order.
|
||||
|
Reference in New Issue
Block a user