//===---- PPCCCState.h - CCState with PowerPC specific extensions -----------===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// #ifndef PPCCCSTATE_H #define PPCCCSTATE_H #include "PPCISelLowering.h" #include "llvm/ADT/BitVector.h" #include "llvm/ADT/SmallVector.h" #include "llvm/CodeGen/CallingConvLower.h" namespace llvm { class PPCCCState : public CCState { … }; class AIXCCState : public CCState { … }; } // end namespace llvm #endif