Translate position to a GCC location
This commit is contained in:
14
gcc/elna-convert.cc
Normal file
14
gcc/elna-convert.cc
Normal file
@ -0,0 +1,14 @@
|
||||
#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;
|
||||
}
|
Reference in New Issue
Block a user