diff options
author | Daniel Dunbar <daniel@zuster.org> | 2010-06-15 19:20:28 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2010-06-15 19:20:28 +0000 |
commit | d1c82fe726a8776cb965c5bf1f6f6c0d311ef6bc (patch) | |
tree | e921f681c7620301b45bfe5ac278619a10b04b0b /lib/Support/FileUtilities.cpp | |
parent | 868ee9460c6e3055162f7ed9b05747606096945a (diff) | |
download | external_llvm-d1c82fe726a8776cb965c5bf1f6f6c0d311ef6bc.zip external_llvm-d1c82fe726a8776cb965c5bf1f6f6c0d311ef6bc.tar.gz external_llvm-d1c82fe726a8776cb965c5bf1f6f6c0d311ef6bc.tar.bz2 |
fpcmp: Fix a possible infinite loop when comparing something like:
1..19 ok
to
1..20 o k
(yes, the odd space is necessary).
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@106032 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Support/FileUtilities.cpp')
-rw-r--r-- | lib/Support/FileUtilities.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/lib/Support/FileUtilities.cpp b/lib/Support/FileUtilities.cpp index 095395f..11c1e02 100644 --- a/lib/Support/FileUtilities.cpp +++ b/lib/Support/FileUtilities.cpp @@ -51,7 +51,15 @@ static const char *BackupNumber(const char *Pos, const char *FirstChar) { if (!isNumberChar(*Pos)) return Pos; // Otherwise, return to the start of the number. + bool HasPeriod = false; while (Pos > FirstChar && isNumberChar(Pos[-1])) { + // Backup over at most one period. + if (Pos[-1] == '.') { + if (HasPeriod) + break; + HasPeriod = true; + } + --Pos; if (Pos > FirstChar && isSignedChar(Pos[0]) && !isExponentChar(Pos[-1])) break; |