[APFloat] Remove the redundent function body of uninitialized ctor, which should be done in r285468

llvm-svn: 285486
This commit is contained in:
Tim Shen 2016-10-29 00:51:41 +00:00
parent 31fdcf39d3
commit 1bab9cfbe5
1 changed files with 1 additions and 4 deletions

View File

@ -821,10 +821,7 @@ IEEEFloat::IEEEFloat(const fltSemantics &ourSemantics) {
// Delegate to the previous constructor, because later copy constructor may
// actually inspects category, which can't be garbage.
IEEEFloat::IEEEFloat(const fltSemantics &ourSemantics, uninitializedTag tag)
: IEEEFloat(ourSemantics) {
// Allocates storage if necessary but does not initialize it.
initialize(&ourSemantics);
}
: IEEEFloat(ourSemantics) {}
IEEEFloat::IEEEFloat(const IEEEFloat &rhs) {
initialize(rhs.semantics);