1 //===-- x86ABIFixups.h ------------------------------------------*- C++ -*-===// 2 // 3 // The LLVM Compiler Infrastructure 4 // 5 // This file is distributed under the University of Illinois Open Source 6 // License. See LICENSE.TXT for details. 7 // 8 //===----------------------------------------------------------------------===// 9 10 #ifndef LLDB_RENDERSCRIPT_X86_H 11 #define LLDB_RENDERSCRIPT_X86_H 12 13 #include "llvm/IR/Module.h" 14 15 namespace lldb_private { 16 namespace lldb_renderscript { 17 18 bool fixupX86FunctionCalls(llvm::Module &module); 19 20 bool fixupX86_64FunctionCalls(llvm::Module &module); 21 } 22 } 23 #endif 24