summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTakashi Kokubun <takashikkbn@gmail.com>2022-09-06 16:09:29 +0900
committerGitHub <noreply@github.com>2022-09-06 16:09:29 +0900
commit3f9125aaba7432ab96926f98619297991a40f3bf (patch)
tree50062183e0011dd1805a0dfe1c6d8d26b71a03ce
parent4214023309ec68f49b30d8a1ee691b05ce75e287 (diff)
Update c_32.rb
-rw-r--r--lib/mjit/c_32.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/mjit/c_32.rb b/lib/mjit/c_32.rb
index 85f9d3eab4..9e14794aff 100644
--- a/lib/mjit/c_32.rb
+++ b/lib/mjit/c_32.rb
@@ -119,7 +119,7 @@ module RubyVM::MJIT
def C.mjit_options
@mjit_options ||= CType::Struct.new(
- "mjit_options", 32,
+ "mjit_options", 28,
on: [0, self._Bool],
save_temps: [8, self._Bool],
warnings: [16, self._Bool],
@@ -130,7 +130,7 @@ module RubyVM::MJIT
verbose: [128, CType::Immediate.new(4)],
max_cache_size: [160, CType::Immediate.new(4)],
pause: [192, self._Bool],
- pause: [224, self._Bool],
+ pause: [200, self._Bool],
)
end