diff options
| author | Jakub Konka <kubkon@jakubkonka.com> | 2022-02-28 19:54:13 +0100 |
|---|---|---|
| committer | Jakub Konka <kubkon@jakubkonka.com> | 2022-02-28 23:20:05 +0100 |
| commit | cfbc3537ef0b3a73d5b8fdd358cf3bb831935861 (patch) | |
| tree | 96c6e1654af9790a679722b4af7cbdcc93eff10c /src/arch | |
| parent | 66d28d0f20bda4c8653816e9f9179b6cc047506e (diff) | |
| download | zig-cfbc3537ef0b3a73d5b8fdd358cf3bb831935861.tar.gz zig-cfbc3537ef0b3a73d5b8fdd358cf3bb831935861.zip | |
x64: pass more behavior tests
Diffstat (limited to 'src/arch')
| -rw-r--r-- | src/arch/x86_64/CodeGen.zig | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/arch/x86_64/CodeGen.zig b/src/arch/x86_64/CodeGen.zig index 3620995514..1c86b794d7 100644 --- a/src/arch/x86_64/CodeGen.zig +++ b/src/arch/x86_64/CodeGen.zig @@ -4839,10 +4839,6 @@ fn genInlineMemset( try self.register_manager.getReg(.rax, null); const abi_size = ty.abiSize(self.target.*); - if (stack_offset > 128) { - return self.fail("TODO inline memset with large stack offset", .{}); - } - const negative_offset = @bitCast(u32, -stack_offset); // We are actually counting `abi_size` bytes; however, we reuse the index register |
