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
RV's implementation uses GCC/Linux-specific features that will not compile on other systems (eg __attribute__((noreturn)) with MSVC, see #13).
The LLVM header llvm/Support/Compiler.h provides portable modifiers/attributes that work on all compilers that LLVM supports. We should use those macros were possible.
The text was updated successfully, but these errors were encountered:
RV's implementation uses GCC/Linux-specific features that will not compile on other systems (eg
__attribute__((noreturn))
with MSVC, see #13).The LLVM header
llvm/Support/Compiler.h
provides portable modifiers/attributes that work on all compilers that LLVM supports. We should use those macros were possible.The text was updated successfully, but these errors were encountered: