summaryrefslogtreecommitdiff
path: root/tool/transform_mjit_header.rb
diff options
context:
space:
mode:
Diffstat (limited to 'tool/transform_mjit_header.rb')
-rw-r--r--tool/transform_mjit_header.rb6
1 files changed, 4 insertions, 2 deletions
diff --git a/tool/transform_mjit_header.rb b/tool/transform_mjit_header.rb
index 7ce139f92a..143c393b66 100644
--- a/tool/transform_mjit_header.rb
+++ b/tool/transform_mjit_header.rb
@@ -99,7 +99,7 @@ module MJITHeader
# This makes easier to process code
def self.separate_macro_and_code(code)
- code.lines.partition { |l| !l.start_with?('#') }.flatten.join('')
+ code.lines.partition { |l| l.start_with?('#') }.map! {|lines| lines.join('')}
end
def self.write(code, out)
@@ -142,7 +142,7 @@ if MJITHeader.windows? # transformation is broken with Windows headers for now
end
puts "\nTransforming external functions to static:"
-code = MJITHeader.separate_macro_and_code(code) # note: this does not work on MinGW
+macro, code = MJITHeader.separate_macro_and_code(code) # note: this does not work on MinGW
stop_pos = -1
extern_names = []
@@ -178,6 +178,8 @@ while (decl_range = MJITHeader.find_decl(code, stop_pos))
end
end
+code << macro
+
# Check the final file correctness
MJITHeader.check_code!(code, cc, cflags, 'final')