diff options
author | David Blaikie <dblaikie@gmail.com> | 2013-08-19 21:02:26 +0000 |
---|---|---|
committer | David Blaikie <dblaikie@gmail.com> | 2013-08-19 21:02:26 +0000 |
commit | 4a9ec7b59d1ebbb046987dbde2bd0372c6d66170 (patch) | |
tree | 8f275aafba15976546c1c735aebfb16df893dfab /clang/lib/CodeGen/CodeGenModule.h | |
parent | 39587672b8261cf1356f4ca8156a93cef5f8cc92 (diff) | |
download | bcm5719-llvm-4a9ec7b59d1ebbb046987dbde2bd0372c6d66170.tar.gz bcm5719-llvm-4a9ec7b59d1ebbb046987dbde2bd0372c6d66170.zip |
PR16933: Don't try to codegen things after we've seen errors.
Refactor the underlying code a bit to remove unnecessary calls to
"hasErrorOccurred" & make them consistently at all the entry points to
the IRGen ASTConsumer.
llvm-svn: 188707
Diffstat (limited to 'clang/lib/CodeGen/CodeGenModule.h')
-rw-r--r-- | clang/lib/CodeGen/CodeGenModule.h | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/clang/lib/CodeGen/CodeGenModule.h b/clang/lib/CodeGen/CodeGenModule.h index 516bedfea6f..393d96dc3a7 100644 --- a/clang/lib/CodeGen/CodeGenModule.h +++ b/clang/lib/CodeGen/CodeGenModule.h @@ -852,17 +852,11 @@ public: /// ErrorUnsupported - Print out an error that codegen doesn't support the /// specified stmt yet. - /// \param OmitOnError - If true, then this error should only be emitted if no - /// other errors have been reported. - void ErrorUnsupported(const Stmt *S, const char *Type, - bool OmitOnError=false); + void ErrorUnsupported(const Stmt *S, const char *Type); /// ErrorUnsupported - Print out an error that codegen doesn't support the /// specified decl yet. - /// \param OmitOnError - If true, then this error should only be emitted if no - /// other errors have been reported. - void ErrorUnsupported(const Decl *D, const char *Type, - bool OmitOnError=false); + void ErrorUnsupported(const Decl *D, const char *Type); /// SetInternalFunctionAttributes - Set the attributes on the LLVM /// function for the given decl and function info. This applies |