Fix the position of the caret in the FileCheck error message.
authorDan Gohman <gohman@apple.com>
Fri, 29 Jan 2010 21:53:18 +0000 (21:53 +0000)
committerDan Gohman <gohman@apple.com>
Fri, 29 Jan 2010 21:53:18 +0000 (21:53 +0000)
commite546343799d1b7914024b62f6c188f5c0d66f7b3
treea76a94edf5af7b5de1ad6a1e462fdb650cf96989
parentfcb0ee8ffeae12aa866f4e7da12a4dd2a1d0dc35
Fix the position of the caret in the FileCheck error message.
Before:

test/CodeGen/X86/lsr-reuse.ll:52:34: error: expected string not found in input
; CHECK: movsd -2048(%rsi), %xmm0
                                 ^

After:

test/CodeGen/X86/lsr-reuse.ll:52:10: error: expected string not found in input
; CHECK: movsd -2048(%rsi), %xmm0
         ^

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