brintos

brintos / llvm-project-archived public Read only

0
0
Text · 759 B · b1a085a Raw
34 lines · c
1//===-- ARM_ehframe_Registers.h -------------------------------------*- C++2//-*-===//3//4// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.5// See https://llvm.org/LICENSE.txt for license information.6// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception7//8//===----------------------------------------------------------------------===//9 10#ifndef utility_ARM_ehframe_Registers_h_11#define utility_ARM_ehframe_Registers_h_12 13enum {14  ehframe_r0 = 0,15  ehframe_r1,16  ehframe_r2,17  ehframe_r3,18  ehframe_r4,19  ehframe_r5,20  ehframe_r6,21  ehframe_r7,22  ehframe_r8,23  ehframe_r9,24  ehframe_r10,25  ehframe_r11,26  ehframe_r12,27  ehframe_sp,28  ehframe_lr,29  ehframe_pc,30  ehframe_cpsr31};32 33#endif // utility_ARM_ehframe_Registers_h_34