Skip whitespace when looking for a potential intended match.
authorDan Gohman <gohman@apple.com>
Fri, 29 Jan 2010 21:55:16 +0000 (21:55 +0000)
committerDan Gohman <gohman@apple.com>
Fri, 29 Jan 2010 21:55:16 +0000 (21:55 +0000)
commitd8a5541a513695039d1eb83eeced05d51ce9f567
tree08163032ab6dfdaeb5b040f12ac2397a711c5f8b
parente546343799d1b7914024b62f6c188f5c0d66f7b3
Skip whitespace when looking for a potential intended match.
Before:

<stdin>:94:1: note: possible intended match here
 movsd 4096(%rsi), %xmm0
^

After:
<stdin>:94:2: note: possible intended match here
 movsd 4096(%rsi), %xmm0
 ^

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94847 91177308-0d34-0410-b5e6-96231b3b80d8
utils/FileCheck/FileCheck.cpp