mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-30 05:24:22 +00:00
Get rid of "might be uninitialized" warnings when compiling with GCC 3.3.2
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14169 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -65,7 +65,7 @@ static char *BackupNumber(char *Pos, char *FirstChar) {
|
|||||||
|
|
||||||
static void CompareNumbers(char *&F1P, char *&F2P, char *F1End, char *F2End) {
|
static void CompareNumbers(char *&F1P, char *&F2P, char *F1End, char *F2End) {
|
||||||
char *F1NumEnd, *F2NumEnd;
|
char *F1NumEnd, *F2NumEnd;
|
||||||
double V1, V2;
|
double V1 = 0.0, V2 = 0.0;
|
||||||
// If we stop on numbers, compare their difference.
|
// If we stop on numbers, compare their difference.
|
||||||
if (isNumberChar(*F1P) && isNumberChar(*F2P)) {
|
if (isNumberChar(*F1P) && isNumberChar(*F2P)) {
|
||||||
V1 = strtod(F1P, &F1NumEnd);
|
V1 = strtod(F1P, &F1NumEnd);
|
||||||
|
Reference in New Issue
Block a user