<feed xmlns='http://www.w3.org/2005/Atom'>
<title>llvm/docs/tutorial/LangImpl5.html, branch release_27</title>
<subtitle>http://llvm.org</subtitle>
<id>https://git.amat.us/llvm/atom/docs/tutorial/LangImpl5.html?h=release_27</id>
<link rel='self' href='https://git.amat.us/llvm/atom/docs/tutorial/LangImpl5.html?h=release_27'/>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/'/>
<updated>2010-03-02T01:11:08Z</updated>
<entry>
<title>Floating-point add, sub, and mul are now spelled fadd, fsub, and fmul,</title>
<updated>2010-03-02T01:11:08Z</updated>
<author>
<name>Dan Gohman</name>
<email>gohman@apple.com</email>
</author>
<published>2010-03-02T01:11:08Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=a9445e11c553855a6caacbbbf77a9b993ecc651e'/>
<id>urn:sha1:a9445e11c553855a6caacbbbf77a9b993ecc651e</id>
<content type='text'>
respectively.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@97531 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>Make Kaleidoscope not link against the interpreter, since that didn't</title>
<updated>2010-02-11T19:15:20Z</updated>
<author>
<name>Jeffrey Yasskin</name>
<email>jyasskin@google.com</email>
</author>
<published>2010-02-11T19:15:20Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=42fc5586241ddc5948ffff67eefe8cb2690534a8'/>
<id>urn:sha1:42fc5586241ddc5948ffff67eefe8cb2690534a8</id>
<content type='text'>
work anyway (Interpreter::getPointerToFunction doesn't return a
callable pointer), and improve the error message when an
ExecutionEngine can't be created.



git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@95896 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>Add "Author Date Id Revision" svn:keyword properties to these files, as</title>
<updated>2010-02-03T17:27:31Z</updated>
<author>
<name>Dan Gohman</name>
<email>gohman@apple.com</email>
</author>
<published>2010-02-03T17:27:31Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=523e3928a340dfd6645b4fc8e861c2d883728227'/>
<id>urn:sha1:523e3928a340dfd6645b4fc8e861c2d883728227</id>
<content type='text'>
is done with the other html files in doc, to hopefully keep strings like
"Last modified" current.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@95225 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>Kill ModuleProvider and ghost linkage by inverting the relationship between</title>
<updated>2010-01-27T20:34:15Z</updated>
<author>
<name>Jeffrey Yasskin</name>
<email>jyasskin@google.com</email>
</author>
<published>2010-01-27T20:34:15Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=f0356fe140af1a30587b9a86bcfb1b2c51b8ce20'/>
<id>urn:sha1:f0356fe140af1a30587b9a86bcfb1b2c51b8ce20</id>
<content type='text'>
Modules and ModuleProviders. Because the "ModuleProvider" simply materializes
GlobalValues now, and doesn't provide modules, it's renamed to
"GVMaterializer". Code that used to need a ModuleProvider to materialize
Functions can now materialize the Functions directly. Functions no longer use a
magic linkage to record that they're materializable; they simply ask the
GVMaterializer.

Because the C ABI must never change, we can't remove LLVMModuleProviderRef or
the functions that refer to it. Instead, because Module now exposes the same
functionality ModuleProvider used to, we store a Module* in any
LLVMModuleProviderRef and translate in the wrapper methods.  The bindings to
other languages still use the ModuleProvider concept.  It would probably be
worth some time to update them to follow the C++ more closely, but I don't
intend to do it.

Fixes http://llvm.org/PR5737 and http://llvm.org/PR5735.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94686 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>Sync c++ kaleidoscope tutorial with test.</title>
<updated>2009-09-22T21:14:49Z</updated>
<author>
<name>Erick Tryzelaar</name>
<email>idadesub@users.sourceforge.net</email>
</author>
<published>2009-09-22T21:14:49Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=fd1ec5e68b593a4f4d5497b150e677ebef36c231'/>
<id>urn:sha1:fd1ec5e68b593a4f4d5497b150e677ebef36c231</id>
<content type='text'>
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@82572 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>Update the tutorial to match changes to examples/Kaleidoscope.</title>
<updated>2009-09-13T21:38:54Z</updated>
<author>
<name>Nick Lewycky</name>
<email>nicholas@mxc.ca</email>
</author>
<published>2009-09-13T21:38:54Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=422094c38dfe6878de40f4ad443dcd77542fac22'/>
<id>urn:sha1:422094c38dfe6878de40f4ad443dcd77542fac22</id>
<content type='text'>
One change I'm not folding in is the removal of two unused variables that
caused warnings, because those were there for expository purposes.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@81721 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>Allocate the module provider in the Kaleidoscope code on the heap, not the stack, so that it can be properly deleted.  Also update the tutorial with the new code.  This fixes PR4762, hopefully better than the last time.</title>
<updated>2009-08-26T20:58:25Z</updated>
<author>
<name>Reid Kleckner</name>
<email>reid@kleckner.net</email>
</author>
<published>2009-08-26T20:58:25Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=60130f0e90d69dc3022878bfe4508dae81f911eb'/>
<id>urn:sha1:60130f0e90d69dc3022878bfe4508dae81f911eb</id>
<content type='text'>
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80138 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>Push LLVMContexts through the IntegerType APIs.</title>
<updated>2009-08-13T21:58:54Z</updated>
<author>
<name>Owen Anderson</name>
<email>resistor@mac.com</email>
</author>
<published>2009-08-13T21:58:54Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=1d0be15f89cb5056e20e2d24faa8d6afb1573bca'/>
<id>urn:sha1:1d0be15f89cb5056e20e2d24faa8d6afb1573bca</id>
<content type='text'>
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@78948 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>Documentation: fix HTML validation errors.</title>
<updated>2009-08-05T15:42:44Z</updated>
<author>
<name>Benjamin Kramer</name>
<email>benny.kra@googlemail.com</email>
</author>
<published>2009-08-05T15:42:44Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=e15192b36bb5e99838d3f70bf79f7b8bed7a75b9'/>
<id>urn:sha1:e15192b36bb5e99838d3f70bf79f7b8bed7a75b9</id>
<content type='text'>
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@78196 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>Move a few more APIs back to 2.5 forms.  The only remaining ones left to change back are</title>
<updated>2009-07-31T20:28:14Z</updated>
<author>
<name>Owen Anderson</name>
<email>resistor@mac.com</email>
</author>
<published>2009-07-31T20:28:14Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=a7235ea7245028a0723e8ab7fd011386b3900777'/>
<id>urn:sha1:a7235ea7245028a0723e8ab7fd011386b3900777</id>
<content type='text'>
metadata related, which I'm waiting on to avoid conflicting with Devang.


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