]> granicus.if.org Git - clang/commit
Implement ARM GNU-style interrupt attribute
authorTim Northover <tnorthover@apple.com>
Tue, 1 Oct 2013 14:34:25 +0000 (14:34 +0000)
committerTim Northover <tnorthover@apple.com>
Tue, 1 Oct 2013 14:34:25 +0000 (14:34 +0000)
commit64eac850a04e33f5b37a4b17ed7e3a18f6edad82
treef7a16974674c14c11bcbdb6153095a9a80f95733
parentf8aebef45428388ffbbd2ad9cbb3bfb15cd7069a
Implement ARM GNU-style interrupt attribute

This attribute allows users to use a modified C or C++ function as an ARM
exception-handling function and, with care, to successfully return control to
user-space after the issue has been dealt with.

rdar://problem/14207019

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@191769 91177308-0d34-0410-b5e6-96231b3b80d8
docs/LanguageExtensions.rst
include/clang/Basic/Attr.td
lib/CodeGen/TargetInfo.cpp
lib/Sema/SemaDeclAttr.cpp
lib/Sema/TargetAttributesSema.cpp
test/CodeGen/arm-interrupt-attr.c [new file with mode: 0644]
test/Sema/arm-interrupt-attr.c [new file with mode: 0644]