Add missed compiler support function for "/" and "%"

i386 does not support div for 64bit integer. Thus llvm will generate
intrinsic call (__udivdi3, __divdi3, __moddi3 and __umoddi3) for "/"
and "%" of 64bit integer.

These intrinsic functions are missed in libbcc intrinsic function table
on i386 platform. It causes symbol missing failure in basic operator
test. This change adds them into the table and fixes the problem.

Change-Id: Iea58dced1776a2dc872ff399c41394bbeca4b04d
2 files changed