diff options
| author | Thiago Macieira <thiago.macieira@intel.com> | 2014-06-26 22:59:19 -0700 |
|---|---|---|
| committer | Thiago Macieira <thiago.macieira@intel.com> | 2014-07-12 17:36:46 +0200 |
| commit | d88e4edcd548e5bb024e75016c5a3449d103bd8d (patch) | |
| tree | 817b7565a744e38c39737bb6bc39cf87fe9141a0 /examples/sql/sqlbrowser/browser.h | |
| parent | b6d50e2aa6e6eb08dec6431f94892dcbbba8a213 (diff) | |
Work around ICC bug in brace initializations containing constexpr
ICC miscompiles this:
struct Inner { int i; constexpr Inner(int i) : i(i) {}};
struct Outer { Inner i; };
const Outer x = { -1 };
(Inner = QBasicAtomicInt; Outer = QtPrivate::RefCount, then again for
QListData::Data)
We expect x to be placed in read-only memory and require no load-time
constructor. ICC unfortunately does not do that. By adding a constexpr
constructor to Outer, it starts behaving like we expect it to, but falls
apart again if you do "const Outer x[]" (the QArrayData statics).
The solution is to probably make the varaibles constexpr too, but that's
a job for the development branch.
Intel issue Id: 6000056211
Intel bug: DPD200534796
Change-Id: Ie9fb5428106486254b7329403890754f300d58c1
Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
Diffstat (limited to 'examples/sql/sqlbrowser/browser.h')
0 files changed, 0 insertions, 0 deletions
