2024-12-27 23:38:25 +01:00
|
|
|
#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. */
|
|
|
|
|
2025-01-05 00:06:51 +01:00
|
|
|
tree convert(tree /* type */, tree expr)
|
2024-12-27 23:38:25 +01:00
|
|
|
{
|
|
|
|
return expr;
|
|
|
|
}
|