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 | 488e993a135ce700b982bf099c3d6b856301d642 (patch) | |
tree | 56ae14c8665f94f96e94f60fd083493d24e3250a /lib/CodeGen/CodeGenFunction.cpp | |
parent | 1c72ef092f3d931639cf44b4f4f9d0eedc1baa8f (diff) |
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.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@54836 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CodeGenFunction.cpp')
-rw-r--r-- | lib/CodeGen/CodeGenFunction.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/CodeGen/CodeGenFunction.cpp b/lib/CodeGen/CodeGenFunction.cpp index d02c860a10..af63be73fe 100644 --- a/lib/CodeGen/CodeGenFunction.cpp +++ b/lib/CodeGen/CodeGenFunction.cpp @@ -173,10 +173,10 @@ const CGRecordLayout *CodeGenFunction::getCGRecordLayout(CodeGenTypes &CGT, return CGT.getCGRecordLayout(RTy->getDecl()); } -/// 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 CodeGenFunction::WarnUnsupported(const Stmt *S, const char *Type) { - CGM.WarnUnsupported(S, Type); +void CodeGenFunction::ErrorUnsupported(const Stmt *S, const char *Type) { + CGM.ErrorUnsupported(S, Type); } unsigned CodeGenFunction::GetIDForAddrOfLabel(const LabelStmt *L) { |