Displaying 4 results from an estimated 4 matches for "__pl_nan_u".
2015 Jul 24
2
[LLVMdev] [lldb-dev] [3.7 Release] We have branched
...ded from .\win32thread.h:4:
>>> ./win32.h(284,25) : error: 'selectany' can only be applied to data
>>> items with external linkage
>>>
>>
>> That line is:
>> extern const __declspec(selectany) union { unsigned __int64 __q; double
>> __d; } __PL_nan_u = { 0x7FF8000000000000UI64 };
>>
>> If it's written like so, clang-cl accepts it:
>> union U { unsigned __int64 __q; double __d; };
>> extern const __declspec(selectany) U __PL_nan_u = {
>> 0x7FF8000000000000UI64 };
>>
>> I guess cl.exe applies the decl...
2015 Jul 16
2
[LLVMdev] [lldb-dev] [3.7 Release] We have branched
...e included from ..\lib\CORE\perl.h:3060:
> In file included from .\win32thread.h:4:
> ./win32.h(284,25) : error: 'selectany' can only be applied to data items
> with external linkage
>
That line is:
extern const __declspec(selectany) union { unsigned __int64 __q; double
__d; } __PL_nan_u = { 0x7FF8000000000000UI64 };
If it's written like so, clang-cl accepts it:
union U { unsigned __int64 __q; double __d; };
extern const __declspec(selectany) U __PL_nan_u = { 0x7FF8000000000000UI64
};
I guess cl.exe applies the declspec to __PL_nan_u while we try to apply it
to the type? (Eve...
2015 Jul 24
0
[LLVMdev] [lldb-dev] [3.7 Release] We have branched
...3060:
>> In file included from .\win32thread.h:4:
>> ./win32.h(284,25) : error: 'selectany' can only be applied to data items
>> with external linkage
>>
>
> That line is:
> extern const __declspec(selectany) union { unsigned __int64 __q; double
> __d; } __PL_nan_u = { 0x7FF8000000000000UI64 };
>
> If it's written like so, clang-cl accepts it:
> union U { unsigned __int64 __q; double __d; };
> extern const __declspec(selectany) U __PL_nan_u = { 0x7FF8000000000000UI64
> };
>
> I guess cl.exe applies the declspec to __PL_nan_u while we...
2015 Jul 15
10
[LLVMdev] [3.7 Release] We have branched
Hi all,
The 3.7 release branch was created from trunk at r242221 today (around
10:40 pm UTC).
Branch policy:
- Any doc changes can go in. Updates to the release notes are highly
encouraged, and should be committed directly to the branch.
- All other patches should be approved by the release manager (me) and
the appropriate code owner. To get a change merged, commit it to
trunk, and then reply