diff options
author | Daniel Dunbar <daniel@zuster.org> | 2008-11-11 01:16:00 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2008-11-11 01:16:00 +0000 |
commit | b3ac5434ab936f092b8cc48349cb01db3a1e1c76 (patch) | |
tree | 2b87b6c7f45f5bfd8289fe46d9a49a3797c33726 /lib | |
parent | 904eed3f6148758d39a2d3c88f3133274460d645 (diff) |
Fix Release-Asserts warning.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@59013 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r-- | lib/AST/ASTContext.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/AST/ASTContext.cpp b/lib/AST/ASTContext.cpp index 52abf43a0e..e84cc4b307 100644 --- a/lib/AST/ASTContext.cpp +++ b/lib/AST/ASTContext.cpp @@ -1811,6 +1811,7 @@ QualType ASTContext::getFromTargetType(unsigned Type) const { } assert(false && "Unhandled TargetInfo::IntType value"); + return QualType(); } //===----------------------------------------------------------------------===// |