提交 9f86b171 编写于 作者: D drchase

8017578: Hotspot compilation error with latest Studio compiler

Summary: Make the destructor virtual (note more non-compiler hotspot errors occur downstream)
Reviewed-by: kvn, twisti
上级 6a87ef19
/* /*
* Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 1997, 2013, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
...@@ -146,7 +146,7 @@ public: ...@@ -146,7 +146,7 @@ public:
// Public Methods // Public Methods
Form(int formType=0, int line=0) Form(int formType=0, int line=0)
: _next(NULL), _linenum(line), _ftype(formType) { }; : _next(NULL), _linenum(line), _ftype(formType) { };
~Form() {}; virtual ~Form() {};
virtual bool ideal_only() const { virtual bool ideal_only() const {
assert(0,"Check of ideal status on non-instruction/operand form.\n"); assert(0,"Check of ideal status on non-instruction/operand form.\n");
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册