search for: vs2k8

Displaying 6 results from an estimated 6 matches for "vs2k8".

Did you mean: vs2k3
2007 Sep 07
1
[LLVMdev] Seeing a crash with ConstantFP::get
Hola Dale, Bumping it up to 3 bits makes everything work hunky dory on the PC side of my project. Would you like me to commit that? Also, after speaking with some VStudio folks, it looks like that issue will likely remain for VS2k8 as well. Another trick that was suggested to me was to try something along these lines: Enum E : unsigned int { A, B, C, D }; ... Class ... { E e : 2; Unsigned int pad : 30; }; Presumably you could reduce the pad size by switching it to an unsigned char. If you had 8 bits total worth of en...
2008 Dec 05
2
[LLVMdev] Build errors on trunk for about a week now.
On Fri, Dec 5, 2008 at 2:31 PM, Cédric Venet <cedric.venet at laposte.net> wrote: > OvermindDL1 a écrit : >> On Fri, Dec 5, 2008 at 1:58 PM, OvermindDL1 <overminddl1 at gmail.com> wrote: >> >>> On Fri, Dec 5, 2008 at 1:57 PM, OvermindDL1 <overminddl1 at gmail.com> wrote: >>> >>>> On Fri, Dec 5, 2008 at 1:52 PM, OvermindDL1
2008 Dec 05
0
[LLVMdev] Build errors on trunk for about a week now.
On Fri, Dec 5, 2008 at 2:38 PM, OvermindDL1 <overminddl1 at gmail.com> wrote: > /* snip */ I updated the svn to 60607. It still needed that const change. Added the const word on that member function. Tried building debug, debug still fails horrible. I am going to try to stop by that computer for an hour or so before my next work shift tonight, will completely get rid of every trace
2007 Sep 06
0
[LLVMdev] Seeing a crash with ConstantFP::get
Dale Johannesen wrote:- > You might argue with that one if you didn't feel like changing your > compiler, but 9 .6p4 is quite explicit: > > ... If the value of an enumerator is stored into a bitfield > of the same enumeration type and the number of bits in the bitfield > is large enough to hold all the values of that enumeration type, the > original enumerator value and
2007 Sep 06
2
[LLVMdev] Seeing a crash with ConstantFP::get
On Sep 6, 2007, at 6:01 AM, Neil Booth wrote: > Dale Johannesen wrote:- > >>> I spent some time walking through what?s going on with a friend of >>> mine from VStudio. Category is given 2 bits in the APFloat class >>> definition. It?s sign extending the enum value for the comparisons >>> when it loads it out of the class, so the 2 becomes a -2 and the
2008 Dec 05
4
[LLVMdev] Build errors on trunk for about a week now.
I did some looking up on that const thing. Apparently that const is 'supposed' to be there, but it is not strictly required. However there is a bug in VS2k3 (VS7) through VS2k8 (VS9) (no clue if it has been fixed yet) that requires it to be there when the functor is being called through a const qualified interface, such as through stl containers. They state that a bug report has been filed, but regardless of if it is filled or not, in such functors you are 'supposed&...