Displaying 3 results from an estimated 3 matches for "bottombase2curr".
2011 Oct 20
3
[LLVMdev] Crash with optimization for size
...rt topCutBaseStoryRelativeIndex;
short bottomCutBaseStoryRelativeIndex;
double fixLevel2Absolute0;
Int32 lock;
// temporary data dependent from the current story
double currCutLevelCalculated;
double topCutLevelCalculated;
double currentStoryLevel;
double topBase2Current;
double bottomBase2Current;
short currentFloorIndex;
bool relativeCalculated;
MD5::FingerPrint cutDataCheckSum;
...
}
The optimization kicks in because 'data' is 16-bytes; but there's no alignment check…
This seems to be a code generation error, but I couldn't reproduce it in a small application....
2011 Oct 21
1
[LLVMdev] Crash with optimization for size
...utLevel;
short topCutBaseStoryRelativeIndex;
short bottomCutBaseStoryRelativeIndex;
double fixLevel2Absolute0;
Int32lock;
// temporary data dependent from the current story
doublecurrCutLevelCalculated;
doubletopCutLevelCalculated;
double currentStoryLevel;
double topBase2Current;
double bottomBase2Current;
short currentFloorIndex;
boolrelativeCalculated;
MD5::FingerPrintcutDataCheckSum;
...
}
The optimization kicks in because 'data' is 16-bytes; but there's no alignment check…
This seems to be a code generation error, but I couldn't reproduce it in a small application. Is thi...
2011 Oct 20
0
[LLVMdev] Crash with optimization for size
...RelativeIndex;
>
> double fixLevel2Absolute0;
>
> Int32
> lock;
>
> // temporary data dependent from the current story
> double
> currCutLevelCalculated;
> double
> topCutLevelCalculated;
> double currentStoryLevel;
> double topBase2Current;
> double bottomBase2Current;
> short currentFloorIndex;
> bool
> relativeCalculated;
> MD5::FingerPrint
> cutDataCheckSum;
>
> ...
> }
>
> The optimization kicks in because 'data' is 16-bytes; but there's no alignment check…
>
> This seems to be a code generation error,...