diff options
author | Daniel Dunbar <daniel@zuster.org> | 2008-08-16 00:56:44 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2008-08-16 00:56:44 +0000 |
commit | a7c8cf620076008474d71cb0b0dab48cdbf90c11 (patch) | |
tree | f3b1e58f700d97bbd6d51af8a9382fb7502b2c19 /clang/lib/CodeGen/CodeGenModule.cpp | |
parent | ceba6ead45be421ff99c3b3cfd7e3762946541ec (diff) | |
download | bcm5719-llvm-a7c8cf620076008474d71cb0b0dab48cdbf90c11.tar.gz bcm5719-llvm-a7c8cf620076008474d71cb0b0dab48cdbf90c11.zip |
Change WarnUnsupported to ErrorUnsupported (in name and in practice).
- We are beyond the point where this shows up often and when it does
generating miscompiled files is bad.
llvm-svn: 54836
Diffstat (limited to 'clang/lib/CodeGen/CodeGenModule.cpp')
-rw-r--r-- | clang/lib/CodeGen/CodeGenModule.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/clang/lib/CodeGen/CodeGenModule.cpp b/clang/lib/CodeGen/CodeGenModule.cpp index 99390c1135c..18672072480 100644 --- a/clang/lib/CodeGen/CodeGenModule.cpp +++ b/clang/lib/CodeGen/CodeGenModule.cpp @@ -65,10 +65,10 @@ void CodeGenModule::Release() { assert(!verifyModule(TheModule)); } -/// WarnUnsupported - Print out a warning that codegen doesn't support the +/// ErrorUnsupported - Print out an error that codegen doesn't support the /// specified stmt yet. -void CodeGenModule::WarnUnsupported(const Stmt *S, const char *Type) { - unsigned DiagID = getDiags().getCustomDiagID(Diagnostic::Warning, +void CodeGenModule::ErrorUnsupported(const Stmt *S, const char *Type) { + unsigned DiagID = getDiags().getCustomDiagID(Diagnostic::Error, "cannot codegen this %0 yet"); SourceRange Range = S->getSourceRange(); std::string Msg = Type; @@ -76,10 +76,10 @@ void CodeGenModule::WarnUnsupported(const Stmt *S, const char *Type) { &Msg, 1, &Range, 1); } -/// WarnUnsupported - Print out a warning that codegen doesn't support the +/// ErrorUnsupported - Print out an error that codegen doesn't support the /// specified decl yet. -void CodeGenModule::WarnUnsupported(const Decl *D, const char *Type) { - unsigned DiagID = getDiags().getCustomDiagID(Diagnostic::Warning, +void CodeGenModule::ErrorUnsupported(const Decl *D, const char *Type) { + unsigned DiagID = getDiags().getCustomDiagID(Diagnostic::Error, "cannot codegen this %0 yet"); std::string Msg = Type; getDiags().Report(Context.getFullLoc(D->getLocation()), DiagID, @@ -888,7 +888,7 @@ void CodeGenModule::EmitTopLevelDecl(Decl *D) { case Decl::LinkageSpec: { LinkageSpecDecl *LSD = cast<LinkageSpecDecl>(D); if (LSD->getLanguage() == LinkageSpecDecl::lang_cxx) - WarnUnsupported(LSD, "linkage spec"); + ErrorUnsupported(LSD, "linkage spec"); // FIXME: implement C++ linkage, C linkage works mostly by C // language reuse already. break; |