mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-03-04 02:18:46 +00:00
[APFloat] Remove the redundent function body of uninitialized ctor, which should be done in r285468
llvm-svn: 285486
This commit is contained in:
parent
ffabf1c406
commit
9e6b8a7f7a
@ -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);
|
||||
|
Loading…
x
Reference in New Issue
Block a user