//put this code to your functions.php
function change_post_date($newdate,$post) {
$newdate['post_date'] = $newdate['post_modified'];
$newdate['post_date_gmt'] = $newdate['post_modified_gmt'];
return $newdate;
}
add_filter('wp_insert_post_data','change_post_date',10,3);