<feed xmlns='http://www.w3.org/2005/Atom'>
<title>llvm/utils/FileCheck, branch release_31</title>
<subtitle>http://llvm.org</subtitle>
<id>https://git.amat.us/llvm/atom/utils/FileCheck?h=release_31</id>
<link rel='self' href='https://git.amat.us/llvm/atom/utils/FileCheck?h=release_31'/>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/'/>
<updated>2011-10-16T05:43:57Z</updated>
<entry>
<title>Make SMDiagnostic a little more sane.  Instead of passing around note/warning/error as a </title>
<updated>2011-10-16T05:43:57Z</updated>
<author>
<name>Chris Lattner</name>
<email>sabre@nondot.org</email>
</author>
<published>2011-10-16T05:43:57Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=3f2d5f60b31fd057c10f77b2e607b23a8c94f6d3'/>
<id>urn:sha1:3f2d5f60b31fd057c10f77b2e607b23a8c94f6d3</id>
<content type='text'>
string, pass it around as an enum.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@142107 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>Enhance llvm::SourceMgr to support diagnostic ranges, the same way clang does.  Enhance</title>
<updated>2011-10-16T04:47:35Z</updated>
<author>
<name>Chris Lattner</name>
<email>sabre@nondot.org</email>
</author>
<published>2011-10-16T04:47:35Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=d8b7aa26134d2abee777f745c32005e63dea2455'/>
<id>urn:sha1:d8b7aa26134d2abee777f745c32005e63dea2455</id>
<content type='text'>
the X86 asmparser to produce ranges in the one case that was annoying me, for example:

test.s:10:15: error: invalid operand for instruction
movl 0(%rax), 0(%edx)
              ^~~~~~~

It should be straight-forward to enhance filecheck, tblgen, and/or the .ll parser to use 
ranges where appropriate if someone is interested.



git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@142106 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>fix PR9629 - We were lowering regexes like a{{b|c}}d into ab|cd, which</title>
<updated>2011-04-09T06:37:03Z</updated>
<author>
<name>Chris Lattner</name>
<email>sabre@nondot.org</email>
</author>
<published>2011-04-09T06:37:03Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=42e31dfd4f3c7fe8f83c930cd3a1700cef6914ea'/>
<id>urn:sha1:42e31dfd4f3c7fe8f83c930cd3a1700cef6914ea</id>
<content type='text'>
is substantially different than a(b|c)d.  Form the latter regex instead.
This found a few problems in the testsuite, which serves as its test.



git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@129196 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>various cleanups, no functionality change.</title>
<updated>2011-04-09T06:18:02Z</updated>
<author>
<name>Chris Lattner</name>
<email>sabre@nondot.org</email>
</author>
<published>2011-04-09T06:18:02Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=13a38c4cb4c90a6d2b5313a6517d6291cb924730'/>
<id>urn:sha1:13a38c4cb4c90a6d2b5313a6517d6291cb924730</id>
<content type='text'>
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@129192 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>Put targets on folders, if the IDE supports the feature.</title>
<updated>2011-02-20T22:06:10Z</updated>
<author>
<name>Oscar Fuentes</name>
<email>ofv@wanadoo.es</email>
</author>
<published>2011-02-20T22:06:10Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=0b85d07d4611e7d704bf6550fbc624aff36a53b4'/>
<id>urn:sha1:0b85d07d4611e7d704bf6550fbc624aff36a53b4</id>
<content type='text'>
Requires CMake 2.8.3 or newer.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@126092 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>emit a specific error when the input file is empty.  This fixes </title>
<updated>2011-02-09T16:46:02Z</updated>
<author>
<name>Chris Lattner</name>
<email>sabre@nondot.org</email>
</author>
<published>2011-02-09T16:46:02Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=1aac1864cfb66ae3d322ff7e28738d03bc1d1bfc'/>
<id>urn:sha1:1aac1864cfb66ae3d322ff7e28738d03bc1d1bfc</id>
<content type='text'>
an annoyance of mine when working on tests: if the input .ll file
is broken, opt outputs an error and generates an empty file.  FileCheck
then emits its "ooh I couldn't find the first CHECK line, scanning
from ..." which obfuscates the actual problem.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@125193 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>MemoryBuffer now return an error_code and returns a OwningPtr&lt;MemoryBuffer&gt; via an out parm.</title>
<updated>2010-12-16T03:29:14Z</updated>
<author>
<name>Michael J. Spencer</name>
<email>bigcheesegs@gmail.com</email>
</author>
<published>2010-12-16T03:29:14Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=3ff9563c3e391954b2e224afcf8b2b0fcc3888aa'/>
<id>urn:sha1:3ff9563c3e391954b2e224afcf8b2b0fcc3888aa</id>
<content type='text'>
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@121958 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>Support/MemoryBuffer: Replace all uses of std::string *ErrMsg with error_code &amp;ec. And fix clients.</title>
<updated>2010-12-09T17:36:48Z</updated>
<author>
<name>Michael J. Spencer</name>
<email>bigcheesegs@gmail.com</email>
</author>
<published>2010-12-09T17:36:48Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=333fb04506233255f10d8095c9e2de5e5f0fdc6f'/>
<id>urn:sha1:333fb04506233255f10d8095c9e2de5e5f0fdc6f</id>
<content type='text'>
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@121379 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>Merge System into Support.</title>
<updated>2010-11-29T18:16:10Z</updated>
<author>
<name>Michael J. Spencer</name>
<email>bigcheesegs@gmail.com</email>
</author>
<published>2010-11-29T18:16:10Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=1f6efa3996dd1929fbc129203ce5009b620e6969'/>
<id>urn:sha1:1f6efa3996dd1929fbc129203ce5009b620e6969</id>
<content type='text'>
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@120298 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>FileCheck: Eliminate DOSish \r from input file.</title>
<updated>2010-11-14T03:28:22Z</updated>
<author>
<name>NAKAMURA Takumi</name>
<email>geek4civic@gmail.com</email>
</author>
<published>2010-11-14T03:28:22Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=9f6e03fa1e05f7c59379e68d7626400ca508cfb0'/>
<id>urn:sha1:9f6e03fa1e05f7c59379e68d7626400ca508cfb0</id>
<content type='text'>
It can pass two tests below on Win32.
  - Clang :: CodeGenCXX/dyncast.cpp
  - LLVM :: CodeGen/ARM/globals.ll

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@119023 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
</feed>
