]> granicus.if.org Git - clang/commit
Move the initialization of VAListTagName after InitializeSema()
authorBen Langmuir <blangmuir@apple.com>
Fri, 5 Sep 2014 20:24:27 +0000 (20:24 +0000)
committerBen Langmuir <blangmuir@apple.com>
Fri, 5 Sep 2014 20:24:27 +0000 (20:24 +0000)
commit55460b6f84b74f60e5458320d6f12971a41fc6f9
treec62899930c556af87b8fb8dbf7ddceaae66c04d7
parent648414aebd1ececf2263096ef7fc203fcce37800
Move the initialization of VAListTagName after InitializeSema()

This innocuous statement to get the identifier info for __va_list_tag
was causing an assertion failure:
  NextIsPrevious() && "decl became non-canonical unexpectedly"
if the __va_list_tag identifier was found in a PCH in some
circumstances, because it was looked up before the ASTReader had a Sema
object to use to find existing decls to merge with.

We could possibly move getting the identifier info even later, or make
it lazy if we wanted to, but this seemed like the minimal change.

Now why a PCH would have this identifier in the first place is a bit
mysterious. This seems to be related to the global module index in some
way, because when the test case is built without the global module index
it will not emit an identifier for __va_list_tag into the PCH, but with
the global module index it does.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@217275 91177308-0d34-0410-b5e6-96231b3b80d8
lib/Sema/Sema.cpp
test/Modules/Inputs/va_list/module.modulemap [new file with mode: 0644]
test/Modules/Inputs/va_list/va_list_a.h [new file with mode: 0644]
test/Modules/Inputs/va_list/va_list_b.h [new file with mode: 0644]
test/Modules/va_list.m [new file with mode: 0644]