8208670: Compiler changes to allow enabling -Wreorder

Reviewed-by: kvn
This commit is contained in:
Thomas Schatzl 2018-08-08 15:31:06 +02:00
parent d702d5f8d2
commit e98c176026
66 changed files with 374 additions and 361 deletions

View file

@ -66,11 +66,11 @@ class StringConcat : public ResourceObj {
};
StringConcat(PhaseStringOpts* stringopts, CallStaticJavaNode* end):
_end(end),
_begin(NULL),
_multiple(false),
_stringopts(stringopts),
_string_alloc(NULL),
_stringopts(stringopts) {
_begin(NULL),
_end(end),
_multiple(false) {
_arguments = new Node(1);
_arguments->del_req(0);
}