Skip to content

Commit 6bed9ef

Browse files
add some links to todos
1 parent 1e28ecb commit 6bed9ef

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

libc/src/setjmp/arm/longjmp.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,8 @@ LLVM_LIBC_FUNCTION(void, longjmp, (__jmp_buf * buf, int val)) {
4949

5050
#else // Thumb2 or ARM
5151

52+
// TODO(https://github.com/llvm/llvm-project/issues/94061): fp registers (d0-d16)
53+
// TODO(https://github.com/llvm/llvm-project/issues/94062): pac+bti
5254
[[gnu::naked]]
5355
LLVM_LIBC_FUNCTION(void, longjmp, (__jmp_buf * buf, int val)) {
5456
asm(R"(

libc/src/setjmp/arm/setjmp.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,8 @@ LLVM_LIBC_FUNCTION(int, setjmp, (__jmp_buf * buf)) {
4747

4848
#else // Thumb2 or ARM
4949

50+
// TODO(https://github.com/llvm/llvm-project/issues/94061): fp registers (d0-d16)
51+
// TODO(https://github.com/llvm/llvm-project/issues/94062): pac+bti
5052
[[gnu::naked]]
5153
LLVM_LIBC_FUNCTION(int, setjmp, (__jmp_buf * buf)) {
5254
asm(R"(

0 commit comments

Comments
 (0)