<feed xmlns='http://www.w3.org/2005/Atom'>
<title>bcm5719-llvm/clang/test/Modules, branch meklort-10.0.1</title>
<subtitle>Project Ortega BCM5719 LLVM</subtitle>
<id>https://git.raptorcs.com/git/bcm5719-llvm/atom?h=meklort-10.0.1</id>
<link rel='self' href='https://git.raptorcs.com/git/bcm5719-llvm/atom?h=meklort-10.0.1'/>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/bcm5719-llvm/'/>
<updated>2020-02-27T13:39:49+00:00</updated>
<entry>
<title>Revert "make -fmodules-codegen and -fmodules-debuginfo work also with PCHs"</title>
<updated>2020-02-27T13:39:49+00:00</updated>
<author>
<name>Hans Wennborg</name>
<email>hans@chromium.org</email>
</author>
<published>2020-02-27T13:33:43+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/bcm5719-llvm/commit/?id=a8684e93a347b5a7ecbb07bad40301f1699a813a'/>
<id>urn:sha1:a8684e93a347b5a7ecbb07bad40301f1699a813a</id>
<content type='text'>
This caused PR44953. See also the discussion on D74846.

This reverts commit cbc9d22e49b434b6ceb2eb94b67079d02e0a7b74.

(cherry picked from commit 7ea9a6e0220da36ff2fd1fbc29c2755be23e5166)
</content>
</entry>
<entry>
<title>Fix a reentrance bug with deserializing ObjC type parameters.</title>
<updated>2020-02-13T08:37:31+00:00</updated>
<author>
<name>John McCall</name>
<email>rjmccall@apple.com</email>
</author>
<published>2020-02-12T23:40:00+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/bcm5719-llvm/commit/?id=e1b73356879b1d9a8095de27e33943ae84d8f495'/>
<id>urn:sha1:e1b73356879b1d9a8095de27e33943ae84d8f495</id>
<content type='text'>
This is a longstanding bug that seems to have been hidden by
a combination of (1) the normal flow being to deserialize the
interface before deserializing its parameter and (2) a precise
ordering of work that was apparently recently disturbed,
perhaps by my abstract-serialization work or Bruno's ObjC
module merging work.

Fixes rdar://59153545.

(cherry picked from commit 77b2ffc498e92cce7546d191f6712a3046300501)
</content>
</entry>
<entry>
<title>[ODRHash] Fix wrong error message with bitfields and mutable.</title>
<updated>2020-01-15T05:12:15+00:00</updated>
<author>
<name>Weverything</name>
<email>rtrieu@google.com</email>
</author>
<published>2020-01-15T05:12:15+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/bcm5719-llvm/commit/?id=a60e8927297005898b10a46300d929ba5cf7833c'/>
<id>urn:sha1:a60e8927297005898b10a46300d929ba5cf7833c</id>
<content type='text'>
Add a check to bitfield mismatches that may have caused Clang to
give an error about the bitfield instead of being mutable.
</content>
</entry>
<entry>
<title>make -fmodules-codegen and -fmodules-debuginfo work also with PCHs</title>
<updated>2020-01-14T23:01:08+00:00</updated>
<author>
<name>Luboš Luňák</name>
<email>l.lunak@centrum.cz</email>
</author>
<published>2019-11-03T20:15:03+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/bcm5719-llvm/commit/?id=cbc9d22e49b434b6ceb2eb94b67079d02e0a7b74'/>
<id>urn:sha1:cbc9d22e49b434b6ceb2eb94b67079d02e0a7b74</id>
<content type='text'>
Allow to build PCH's (with -building-pch-with-obj and the extra .o file)
with -fmodules-codegen -fmodules-debuginfo to allow emitting shared code
into the extra .o file, similarly to how it works with modules. A bit of
a misnomer, but the underlying functionality is the same. This saves up
to 20% of build time here.

Differential Revision: https://reviews.llvm.org/D69778
</content>
</entry>
<entry>
<title>fix recent -fmodules-codegen fix test</title>
<updated>2020-01-14T22:51:07+00:00</updated>
<author>
<name>Luboš Luňák</name>
<email>l.lunak@centrum.cz</email>
</author>
<published>2020-01-14T22:46:35+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/bcm5719-llvm/commit/?id=b5b2cf7af47f1ca04635dae7b787c8a81d5af4c9'/>
<id>urn:sha1:b5b2cf7af47f1ca04635dae7b787c8a81d5af4c9</id>
<content type='text'>
</content>
</entry>
<entry>
<title>-fmodules-codegen should not emit extern templates</title>
<updated>2020-01-14T22:39:50+00:00</updated>
<author>
<name>Luboš Luňák</name>
<email>l.lunak@centrum.cz</email>
</author>
<published>2019-11-03T19:47:40+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/bcm5719-llvm/commit/?id=729530f68fe135ad41d470fbed019cc5e31ac8a5'/>
<id>urn:sha1:729530f68fe135ad41d470fbed019cc5e31ac8a5</id>
<content type='text'>
If a header contains 'extern template', then the template should be provided
somewhere by an explicit instantiation, so it is not necessary to generate
a copy. Worse, this can lead to an unresolved symbol, because the codegen's
object file will not actually contain functions from such a template
because of the GVA_AvailableExternally, but the object file for the explicit
instantiation will not contain them either because it will be blocked
by the information provided by the module.

Differential Revision: https://reviews.llvm.org/D69779
</content>
</entry>
<entry>
<title>Rename DW_AT_LLVM_isysroot to DW_AT_LLVM_sysroot</title>
<updated>2019-12-20T21:11:17+00:00</updated>
<author>
<name>Adrian Prantl</name>
<email>aprantl@apple.com</email>
</author>
<published>2019-12-19T19:56:56+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/bcm5719-llvm/commit/?id=44b4b833ad76fc61e43473c581a557f72a4ed8f4'/>
<id>urn:sha1:44b4b833ad76fc61e43473c581a557f72a4ed8f4</id>
<content type='text'>
This is a purely cosmetic change that is NFC in terms of the binary
output. I bugs me that I called the attribute DW_AT_LLVM_isysroot
since the "i" is an artifact of GCC command line option syntax
(-isysroot is in the category of -i options) and doesn't carry any
useful information otherwise.

This attribute only appears in Clang module debug info.

Differential Revision: https://reviews.llvm.org/D71722
</content>
</entry>
<entry>
<title>Fix `sed -e s@FOO@%/S@` and similar when there's @'s in the working directory</title>
<updated>2019-12-03T23:44:01+00:00</updated>
<author>
<name>Daniel Sanders</name>
<email>daniel_l_sanders@apple.com</email>
</author>
<published>2019-12-03T23:22:30+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/bcm5719-llvm/commit/?id=327894859cc41c1730807f8a179aa880203262f5'/>
<id>urn:sha1:327894859cc41c1730807f8a179aa880203262f5</id>
<content type='text'>
Jenkins sometimes starts a new working directory by appending @2 (or
incrementing the number if the @n suffix is already there). This causes
several clang tests to fail as:
  s@INPUT_DIR@%/S/Inputs@g
gets expanded to the invalid:
  s@INPUT_DIR@/path/to/workdir@2/Inputs@g
                               ~~~~~~~~~~
where the part marked with ~'s is interpreted as the flags. These are
invalid and the test fails.

Previous fixes simply exchanged the @ character for another like | but
that's just moving the problem. Address it by adding an expansion that
escapes the @ character we're using as a delimiter as well as other magic
characters in the replacement of sed's s@@@.

There's still room for expansions to cause trouble though. One I ran into
while testing this was that having a directory called foo@bar causes lots
of `CHECK-NOT: foo` directives to match. There's also things like
directories containing `\1`
</content>
</entry>
<entry>
<title>[clang][modules] Add support for merging lifetime-extended temporaries</title>
<updated>2019-12-02T18:55:13+00:00</updated>
<author>
<name>Tyker</name>
<email>tyker1@outlook.com</email>
</author>
<published>2019-11-30T15:42:33+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/bcm5719-llvm/commit/?id=9ec6d7121132d30db68818e4f684910f76307fdf'/>
<id>urn:sha1:9ec6d7121132d30db68818e4f684910f76307fdf</id>
<content type='text'>
Summary: Add support for merging lifetime-extended temporaries

Reviewers: rsmith

Reviewed By: rsmith

Subscribers: xbolva00, cfe-commits

Tags: #clang

Differential Revision: https://reviews.llvm.org/D70190
</content>
</entry>
<entry>
<title>Revert "[clang][modules] Add support for merging lifetime-extended temporaries"</title>
<updated>2019-12-01T21:38:31+00:00</updated>
<author>
<name>Tyker</name>
<email>tyker1@outlook.com</email>
</author>
<published>2019-12-01T21:38:31+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/bcm5719-llvm/commit/?id=ae5484540f15bcbcb0de9558e66b0217ab8473ed'/>
<id>urn:sha1:ae5484540f15bcbcb0de9558e66b0217ab8473ed</id>
<content type='text'>
This reverts commit a3cbe1a202df6ec8e23bd55e14db254e4bc33021.
</content>
</entry>
</feed>
