<feed xmlns='http://www.w3.org/2005/Atom'>
<title>llvm/test/ExecutionEngine, branch release_23</title>
<subtitle>http://llvm.org</subtitle>
<id>https://git.amat.us/llvm/atom/test/ExecutionEngine?h=release_23</id>
<link rel='self' href='https://git.amat.us/llvm/atom/test/ExecutionEngine?h=release_23'/>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/'/>
<updated>2008-04-19T22:32:52Z</updated>
<entry>
<title>rename *.llx -&gt; *.ll, last batch.</title>
<updated>2008-04-19T22:32:52Z</updated>
<author>
<name>Chris Lattner</name>
<email>sabre@nondot.org</email>
</author>
<published>2008-04-19T22:32:52Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=5ae21fb23a55427738132a39c8df550c9c1d0771'/>
<id>urn:sha1:5ae21fb23a55427738132a39c8df550c9c1d0771</id>
<content type='text'>
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@49971 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>Remove llvm-upgrade and update tests.</title>
<updated>2008-03-10T07:21:50Z</updated>
<author>
<name>Tanya Lattner</name>
<email>tonic@nondot.org</email>
</author>
<published>2008-03-10T07:21:50Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=ceca194c4355224723b309a3a27c5e5bc19cb6fc'/>
<id>urn:sha1:ceca194c4355224723b309a3a27c5e5bc19cb6fc</id>
<content type='text'>
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@48137 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>Teach the interpreter to read and write memory in the</title>
<updated>2007-12-14T19:38:31Z</updated>
<author>
<name>Duncan Sands</name>
<email>baldrick@free.fr</email>
</author>
<published>2007-12-14T19:38:31Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=8a43e9e5d751ab827ba3ff0cf862787d3263a484'/>
<id>urn:sha1:8a43e9e5d751ab827ba3ff0cf862787d3263a484</id>
<content type='text'>
endianness of the target not of the host.  Done by the
simple expedient of reversing bytes for primitive types
if the host and target endianness don't match.  This is
correct for integer and pointer types.  I don't know if
it is correct for floating point types.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@45039 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>Remove this testcase as it will always fail on</title>
<updated>2007-12-13T02:03:57Z</updated>
<author>
<name>Zhou Sheng</name>
<email>zhousheng00@gmail.com</email>
</author>
<published>2007-12-13T02:03:57Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=f488a8d39427786eefac8b2846c222dc48a1d2ed'/>
<id>urn:sha1:f488a8d39427786eefac8b2846c222dc48a1d2ed</id>
<content type='text'>
platform like Darwin.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@44977 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>Fixed PR1629.</title>
<updated>2007-12-12T04:55:43Z</updated>
<author>
<name>Zhou Sheng</name>
<email>zhousheng00@gmail.com</email>
</author>
<published>2007-12-12T04:55:43Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=6a7951ce9bc9e5f21fcee7314893345acd4e77d7'/>
<id>urn:sha1:6a7951ce9bc9e5f21fcee7314893345acd4e77d7</id>
<content type='text'>
Make lli interpreter correctly call external functions sin()/cos(),
__cxa_guard_acquire() and __cxa_guard_release().


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@44910 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>Fix PR1836: in the interpreter, read and write apints</title>
<updated>2007-12-10T17:43:13Z</updated>
<author>
<name>Duncan Sands</name>
<email>baldrick@free.fr</email>
</author>
<published>2007-12-10T17:43:13Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=1eff70451fbb079c1d5b8f45ff8c8a2b8f74d7ba'/>
<id>urn:sha1:1eff70451fbb079c1d5b8f45ff8c8a2b8f74d7ba</id>
<content type='text'>
using the minimum possible number of bytes.  For little
endian targets run on little endian machines, apints are
stored in memory from LSB to MSB as before.  For big endian
targets on big endian machines they are stored from MSB to
LSB which wasn't always the case before (if the target and
host endianness doesn't match values are stored according
to the host's endianness).  Doing this requires knowing the
endianness of the host, which is determined when configuring -
thanks go to Anton for this.  Only having access to little
endian machines I was unable to properly test the big endian
part, which is also the most complicated...


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@44796 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>make this test have a deterministic result.</title>
<updated>2007-11-28T18:20:49Z</updated>
<author>
<name>Chris Lattner</name>
<email>sabre@nondot.org</email>
</author>
<published>2007-11-28T18:20:49Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=0a0cfdf8252d2742ca458372aeebf494b3c7d47f'/>
<id>urn:sha1:0a0cfdf8252d2742ca458372aeebf494b3c7d47f</id>
<content type='text'>
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@44404 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>Revert previous "fix" - the breakage was due to some</title>
<updated>2007-11-28T16:50:29Z</updated>
<author>
<name>Duncan Sands</name>
<email>baldrick@free.fr</email>
</author>
<published>2007-11-28T16:50:29Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=1e7b1bbd9c939ce1581862a6e0f8961279ea5992'/>
<id>urn:sha1:1e7b1bbd9c939ce1581862a6e0f8961279ea5992</id>
<content type='text'>
local changes, not the "not".


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@44402 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>This test somehow got an extra "not" during the</title>
<updated>2007-11-28T15:36:27Z</updated>
<author>
<name>Duncan Sands</name>
<email>baldrick@free.fr</email>
</author>
<published>2007-11-28T15:36:27Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=7dbb1e45e30ac1dbe218dbfd9c9a035b91f28277'/>
<id>urn:sha1:7dbb1e45e30ac1dbe218dbfd9c9a035b91f28277</id>
<content type='text'>
recent stderr updates.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@44401 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>Fix bug in regression tests that ignored stderr output in RUN lines. Updated tests and fixed broken run lines.</title>
<updated>2007-11-28T04:57:00Z</updated>
<author>
<name>Tanya Lattner</name>
<email>tonic@nondot.org</email>
</author>
<published>2007-11-28T04:57:00Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=727842e9d76680a49616083fed0e812ae209aff8'/>
<id>urn:sha1:727842e9d76680a49616083fed0e812ae209aff8</id>
<content type='text'>
XFAILed 3 arm regressions (will file bugs)


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