diff options
author | John McCall <rjmccall@apple.com> | 2010-12-21 00:44:39 +0000 |
---|---|---|
committer | John McCall <rjmccall@apple.com> | 2010-12-21 00:44:39 +0000 |
commit | 00ccbefcffeb88ea3e2e6323e594fa968753ad14 (patch) | |
tree | f81a73a5178f1db11569971ef270596a2dcabe29 /lib/Sema/SemaDecl.cpp | |
parent | 8e5fc9be37c6828ad008f22730e3baac1bef1686 (diff) |
Fix the noreturn conversion to only strip off a single level of indirection.
Apply the noreturn attribute while creating a builtin function's type.
Remove the getNoReturnType() API.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@122295 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Sema/SemaDecl.cpp')
-rw-r--r-- | lib/Sema/SemaDecl.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/Sema/SemaDecl.cpp b/lib/Sema/SemaDecl.cpp index 665689ef26..ad0c077aad 100644 --- a/lib/Sema/SemaDecl.cpp +++ b/lib/Sema/SemaDecl.cpp @@ -5594,8 +5594,6 @@ void Sema::AddKnownFunctionAttributes(FunctionDecl *FD) { FD->addAttr(::new (Context) ConstAttr(FD->getLocation(), Context)); } - if (Context.BuiltinInfo.isNoReturn(BuiltinID)) - FD->setType(Context.getNoReturnType(FD->getType())); if (Context.BuiltinInfo.isNoThrow(BuiltinID)) FD->addAttr(::new (Context) NoThrowAttr(FD->getLocation(), Context)); if (Context.BuiltinInfo.isConst(BuiltinID)) |