Skip to content

Commit 4d17991

Browse files
committed
Arm64Emitter: Removes Default pad type from LoadConstant
All direct usages have been audited. Now we need to do indirect usages through the `Constant` IR operation.
1 parent 6a3488a commit 4d17991

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

FEXCore/Source/Interface/Core/ArchHelpers/Arm64Emitter.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ class Arm64Emitter : public ARMEmitter::Emitter {
117117
// Choose to pad or not depending on if code-caching is enabled.
118118
AUTOPAD,
119119
};
120-
void LoadConstant(ARMEmitter::Size s, ARMEmitter::Register Reg, uint64_t Constant, PadType Pad = PadType::AUTOPAD, int MaxBytes = 0);
120+
void LoadConstant(ARMEmitter::Size s, ARMEmitter::Register Reg, uint64_t Constant, PadType Pad, int MaxBytes = 0);
121121

122122
protected:
123123
FEXCore::Context::ContextImpl* EmitterCTX;

0 commit comments

Comments
 (0)