#include "config.h" #include "system.h" #include "coretypes.h" #include "tree.h" #include "fold-const.h" #include "convert.h" /* Creates an expression whose value is that of EXPR, converted to type TYPE. This function implements all reasonable scalar conversions. */ tree convert(tree type, tree expr) { return expr; }