You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Clang produces calls for functions like __lshrsi3, __lshrhi3 which is supposed to be a part of runtime library, but they are missed in libgcc for msp430 target.
Example,
1 int i;
2 unsigned long *x;
3
4 void foo() {
5 *x = *x >> i;
6 }
Clang produces calls for functions like
__lshrsi3
,__lshrhi3
which is supposed to be a part of runtime library, but they are missed in libgcc for msp430 target.Example,
clang
gcc
Added:
Need to add correct lib call lowering for RTLIB::SRL_I32 and other shifts to MSP430ISelLowering.
The text was updated successfully, but these errors were encountered: