<feed xmlns='http://www.w3.org/2005/Atom'>
<title>llvm/lib/System/Win32, branch release_20</title>
<subtitle>http://llvm.org</subtitle>
<id>https://git.amat.us/llvm/atom/lib/System/Win32?h=release_20</id>
<link rel='self' href='https://git.amat.us/llvm/atom/lib/System/Win32?h=release_20'/>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/'/>
<updated>2007-05-06T05:32:21Z</updated>
<entry>
<title>pull some win32 code into common code, add bitcode identification support.</title>
<updated>2007-05-06T05:32:21Z</updated>
<author>
<name>Chris Lattner</name>
<email>sabre@nondot.org</email>
</author>
<published>2007-05-06T05:32:21Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=f283a5e53a99d13035a9e783acff80d4ea064a92'/>
<id>urn:sha1:f283a5e53a99d13035a9e783acff80d4ea064a92</id>
<content type='text'>
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@36846 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>Unbreak VC++ build.</title>
<updated>2007-04-07T20:47:27Z</updated>
<author>
<name>Jeff Cohen</name>
<email>jeffc@jolt-lang.org</email>
</author>
<published>2007-04-07T20:47:27Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=31102896e5cecdc2b28edd52bb0599d3bc91d24e'/>
<id>urn:sha1:31102896e5cecdc2b28edd52bb0599d3bc91d24e</id>
<content type='text'>
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@35751 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>For PR1291:</title>
<updated>2007-04-07T18:52:17Z</updated>
<author>
<name>Reid Spencer</name>
<email>rspencer@reidspencer.com</email>
</author>
<published>2007-04-07T18:52:17Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=2ae9d11b7c0fd54e0b5298fb4fcf17b6ee9d5c91'/>
<id>urn:sha1:2ae9d11b7c0fd54e0b5298fb4fcf17b6ee9d5c91</id>
<content type='text'>
Implement the PathWithStatus class and its use throughout lib/System.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@35742 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>For PR789:</title>
<updated>2007-03-29T19:05:44Z</updated>
<author>
<name>Reid Spencer</name>
<email>rspencer@reidspencer.com</email>
</author>
<published>2007-03-29T19:05:44Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=8475ec068c213d0bf73f7686d82491a8f12e3b32'/>
<id>urn:sha1:8475ec068c213d0bf73f7686d82491a8f12e3b32</id>
<content type='text'>
Make the sys::Path::getFileStatus function more efficient by having it
return a pointer to the FileStatus structure rather than copy it. Adjust
uses of the function accordingly. Also, fix some memory issues in sys::Path.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@35476 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>Determine absolute paths the correct way :)</title>
<updated>2007-03-29T17:27:38Z</updated>
<author>
<name>Jeff Cohen</name>
<email>jeffc@jolt-lang.org</email>
</author>
<published>2007-03-29T17:27:38Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=84892be310e1c578f0cf093e51dd4c9c5d14ac84'/>
<id>urn:sha1:84892be310e1c578f0cf093e51dd4c9c5d14ac84</id>
<content type='text'>
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@35464 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>Add a uniqueID field to the FileStatus structure for Paths. This will map</title>
<updated>2007-03-29T17:00:31Z</updated>
<author>
<name>Reid Spencer</name>
<email>rspencer@reidspencer.com</email>
</author>
<published>2007-03-29T17:00:31Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=4031befb62d90309bdaa3c9cbed9c0b5fc12d67c'/>
<id>urn:sha1:4031befb62d90309bdaa3c9cbed9c0b5fc12d67c</id>
<content type='text'>
to the inode number on Unix and something far less unique on Windows. The
windows case needs to be improved.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@35461 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>For PR789:</title>
<updated>2007-03-29T16:43:20Z</updated>
<author>
<name>Reid Spencer</name>
<email>rspencer@reidspencer.com</email>
</author>
<published>2007-03-29T16:43:20Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=69cce815e7414ad9a186920c78890c852986d6bf'/>
<id>urn:sha1:69cce815e7414ad9a186920c78890c852986d6bf</id>
<content type='text'>
* Add a method: bool isAbsolute() const, which determines if the path name
  is absolute or not.
* Implement caching of file status information in the Path object. Allow it
  to be updated forcefully or lazily re-fetched from the cached value.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@35456 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>Fix mingw32 build</title>
<updated>2007-03-19T20:19:08Z</updated>
<author>
<name>Anton Korobeynikov</name>
<email>asl@math.spbu.ru</email>
</author>
<published>2007-03-19T20:19:08Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=d437db1b7b449a96f0bb4d768d590d4861dba012'/>
<id>urn:sha1:d437db1b7b449a96f0bb4d768d590d4861dba012</id>
<content type='text'>
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@35177 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>Unbreak mingw32 build</title>
<updated>2007-03-09T11:53:34Z</updated>
<author>
<name>Anton Korobeynikov</name>
<email>asl@math.spbu.ru</email>
</author>
<published>2007-03-09T11:53:34Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=349ec1c11b09684965f4326c119f76ce3025d270'/>
<id>urn:sha1:349ec1c11b09684965f4326c119f76ce3025d270</id>
<content type='text'>
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@35042 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>Ensure 64-bit correctness.</title>
<updated>2007-03-05T05:45:08Z</updated>
<author>
<name>Jeff Cohen</name>
<email>jeffc@jolt-lang.org</email>
</author>
<published>2007-03-05T05:45:08Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=413bc8262e4a73d28f177486c3b29cfd74ca3120'/>
<id>urn:sha1:413bc8262e4a73d28f177486c3b29cfd74ca3120</id>
<content type='text'>
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@34923 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
</feed>
