diff options
author | Mike Stump <mrs@apple.com> | 2009-07-28 02:25:19 +0000 |
---|---|---|
committer | Mike Stump <mrs@apple.com> | 2009-07-28 02:25:19 +0000 |
commit | 782fa308a765aeac2acb39c4e697c937ec21185b (patch) | |
tree | 3bd6c43f32e0d1c70fb66aed8a15c0332c86b1d1 /lib/Frontend/PCHWriter.cpp | |
parent | 0cfeb63f532973777f6fe75d3468c3acad4adfe3 (diff) |
Make longjmp a real builtin.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@77291 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Frontend/PCHWriter.cpp')
-rw-r--r-- | lib/Frontend/PCHWriter.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/Frontend/PCHWriter.cpp b/lib/Frontend/PCHWriter.cpp index 13f564d012..69247d3e85 100644 --- a/lib/Frontend/PCHWriter.cpp +++ b/lib/Frontend/PCHWriter.cpp @@ -1840,6 +1840,8 @@ void PCHWriter::WritePCH(Sema &SemaRef, MemorizeStatCalls *StatCalls, AddTypeRef(Context.getRawCFConstantStringType(), Record); AddTypeRef(Context.getRawObjCFastEnumerationStateType(), Record); AddTypeRef(Context.getFILEType(), Record); + AddTypeRef(Context.getjmp_bufType(), Record); + AddTypeRef(Context.getsigjmp_bufType(), Record); Stream.EmitRecord(pch::SPECIAL_TYPES, Record); // Keep writing types and declarations until all types and |