mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-27 14:34:58 +00:00
ExceptionDemo.cpp: Use Function::setDoesNotReturn(). Attributes stuff was updated.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@165796 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
9f469a0ca3
commit
4c856ee1f8
@ -1846,7 +1846,7 @@ static void createStandardUtilityFunctions(unsigned numTypeInfos,
|
|||||||
true,
|
true,
|
||||||
false);
|
false);
|
||||||
|
|
||||||
funct->addFnAttr(llvm::Attribute::NoReturn);
|
funct->setDoesNotReturn();
|
||||||
|
|
||||||
// _Unwind_Resume
|
// _Unwind_Resume
|
||||||
|
|
||||||
@ -1866,7 +1866,7 @@ static void createStandardUtilityFunctions(unsigned numTypeInfos,
|
|||||||
true,
|
true,
|
||||||
false);
|
false);
|
||||||
|
|
||||||
funct->addFnAttr(llvm::Attribute::NoReturn);
|
funct->setDoesNotReturn();
|
||||||
|
|
||||||
// ourPersonality
|
// ourPersonality
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user