1696bd635SAlexander Shaposhnikov //===-- RenderScriptx86ABIFixups.h ------------------------------*- C++ -*-===// 219459580SLuke Drummond // 32946cd70SChandler Carruth // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 42946cd70SChandler Carruth // See https://llvm.org/LICENSE.txt for license information. 52946cd70SChandler Carruth // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 619459580SLuke Drummond // 719459580SLuke Drummond //===----------------------------------------------------------------------===// 819459580SLuke Drummond 9*cdc514e4SJonas Devlieghere #ifndef LLDB_SOURCE_PLUGINS_LANGUAGERUNTIME_RENDERSCRIPT_RENDERSCRIPTRUNTIME_RENDERSCRIPTX86ABIFIXUPS_H 10*cdc514e4SJonas Devlieghere #define LLDB_SOURCE_PLUGINS_LANGUAGERUNTIME_RENDERSCRIPT_RENDERSCRIPTRUNTIME_RENDERSCRIPTX86ABIFIXUPS_H 1119459580SLuke Drummond 1219459580SLuke Drummond #include "llvm/IR/Module.h" 1319459580SLuke Drummond 14b9c1b51eSKate Stone namespace lldb_private { 15b9c1b51eSKate Stone namespace lldb_renderscript { 1619459580SLuke Drummond 17b9c1b51eSKate Stone bool fixupX86FunctionCalls(llvm::Module &module); 1819459580SLuke Drummond 19b9c1b51eSKate Stone bool fixupX86_64FunctionCalls(llvm::Module &module); 2019459580SLuke Drummond } 2119459580SLuke Drummond } 2219459580SLuke Drummond #endif 23