Skip to content

Commit 2d2ef38

Browse files
committed
[libunwind] Only include cet.h if __CET__ defined
We should not assume that the cet.h header exists just because we're on x86 linux. Only include it if __CET__ is defined. This makes the code more similar to what compiler-rt does in https://github.com/llvm/llvm-project/blob/ee423d93ead39e94c2970b3cc7ef6e6faa75d10b/compiler-rt/lib/builtins/assembly.h#L17 (though that one also has a __has_include() check -- I've not found that to be necessary). Differential Revision: https://reviews.llvm.org/D119697
1 parent b66b324 commit 2d2ef38

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libunwind/src/assembly.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
#ifndef UNWIND_ASSEMBLY_H
1616
#define UNWIND_ASSEMBLY_H
1717

18-
#if (defined(__i386__) || defined(__x86_64__)) && defined(__linux__)
18+
#if defined(__linux__) && defined(__CET__)
1919
#include <cet.h>
2020
#define _LIBUNWIND_CET_ENDBR _CET_ENDBR
2121
#else

0 commit comments

Comments
 (0)