RenderScriptx86ABIFixups.h revision 311128
1//===-- RenderScriptx86ABIFixups.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
15namespace lldb_private {
16namespace lldb_renderscript {
17
18bool fixupX86FunctionCalls(llvm::Module &module);
19
20bool fixupX86_64FunctionCalls(llvm::Module &module);
21}
22}
23#endif
24