diff options
author | Douglas Gregor <dgregor@apple.com> | 2011-06-13 16:42:53 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2011-06-13 16:42:53 +0000 |
commit | c9224d6714b1902ef661f6c9a3dbad7faa18fedd (patch) | |
tree | 06ec3cce9612286a15560041ae074f0362fe6bc4 /clang/lib/Serialization/ASTWriter.cpp | |
parent | bf31c4e4ca1fb09884b5c2030718ab4772320c7d (diff) | |
download | bcm5719-llvm-c9224d6714b1902ef661f6c9a3dbad7faa18fedd.tar.gz bcm5719-llvm-c9224d6714b1902ef661f6c9a3dbad7faa18fedd.zip |
Eliminate the -f[no]objc-infer-related-result-type flags; there's no
reason to allow the user to control these semantics through a flag.
llvm-svn: 132919
Diffstat (limited to 'clang/lib/Serialization/ASTWriter.cpp')
-rw-r--r-- | clang/lib/Serialization/ASTWriter.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/clang/lib/Serialization/ASTWriter.cpp b/clang/lib/Serialization/ASTWriter.cpp index ba9032e0d33..194d6c31cfa 100644 --- a/clang/lib/Serialization/ASTWriter.cpp +++ b/clang/lib/Serialization/ASTWriter.cpp @@ -1050,7 +1050,6 @@ void ASTWriter::WriteLanguageOptions(const LangOptions &LangOpts) { Record.push_back(LangOpts.AppleKext); // Apple's kernel extensions ABI Record.push_back(LangOpts.ObjCDefaultSynthProperties); // Objective-C auto-synthesized // properties enabled. - Record.push_back(LangOpts.ObjCInferRelatedResultType); Record.push_back(LangOpts.NoConstantCFStrings); // non cfstring generation enabled.. Record.push_back(LangOpts.PascalStrings); // Allow Pascal strings |