Skip to content

Commit 374d00f

Browse files
committed
[𝘀𝗽𝗿] initial version
Created using spr 1.3.5-bogner
2 parents 390300d + ee5b76c commit 374d00f

File tree

12 files changed

+1174
-1
lines changed

12 files changed

+1174
-1
lines changed

lldb/include/lldb/Utility/ArchSpec.h

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,15 @@ class ArchSpec {
107107
eRISCVSubType_riscv64,
108108
};
109109

110+
enum LoongArcheflags {
111+
eLoongArch_abi_soft_float = 0x00000000, /// soft float
112+
eLoongArch_abi_single_float =
113+
0x00000001, /// single precision floating point, +f
114+
eLoongArch_abi_double_float =
115+
0x00000002, /// double precision floating point, +d
116+
eLoongArch_abi_mask = 0x00000003,
117+
};
118+
110119
enum LoongArchSubType {
111120
eLoongArchSubType_unknown,
112121
eLoongArchSubType_loongarch32,

lldb/source/Plugins/ABI/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
foreach(target AArch64 ARM ARC Hexagon Mips MSP430 PowerPC RISCV SystemZ X86)
1+
foreach(target AArch64 ARM ARC Hexagon LoongArch Mips MSP430 PowerPC RISCV SystemZ X86)
22
if (${target} IN_LIST LLVM_TARGETS_TO_BUILD)
33
add_subdirectory(${target})
44
endif()

0 commit comments

Comments
 (0)