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 { 17 namespace lldb_renderscript 18 { 19 20 bool 21 fixupX86FunctionCalls(llvm::Module &module); 22 23 bool 24 fixupX86_64FunctionCalls(llvm::Module &module); 25 } 26 } 27 #endif 28