mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-12 23:37:33 +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:
parent
df497317f1
commit
4a4bfd87a4
@ -65,7 +65,7 @@ static char *BackupNumber(char *Pos, char *FirstChar) {
|
||||
|
||||
static void CompareNumbers(char *&F1P, char *&F2P, char *F1End, char *F2End) {
|
||||
char *F1NumEnd, *F2NumEnd;
|
||||
double V1, V2;
|
||||
double V1 = 0.0, V2 = 0.0;
|
||||
// If we stop on numbers, compare their difference.
|
||||
if (isNumberChar(*F1P) && isNumberChar(*F2P)) {
|
||||
V1 = strtod(F1P, &F1NumEnd);
|
||||
|
Loading…
x
Reference in New Issue
Block a user