fix RM-304

http://hipbyte.myjetbrains.com/youtrack/issue/RM-304

if stub codes are not generated for 64 bit,
it should share 32 bit stub codes.
This commit is contained in:
Watson
2013-11-02 23:49:34 +09:00
parent 77a55b28c2
commit 93a2cab101

View File

@@ -234,9 +234,9 @@ def generate_bs_static_stub(file, includes)
end
if code32
text << "\n#if !defined(__LP64__)\n"
text << "\n#if !defined(__LP64__)\n" if code64
text << code32
text << "\n#endif\n"
text << "\n#endif\n" if code64
end
did_something = true