]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptx86ABIFixups.h
Upgrade to OpenPAM Tabebuia.
[FreeBSD/FreeBSD.git] / contrib / llvm / tools / lldb / source / Plugins / LanguageRuntime / RenderScript / RenderScriptRuntime / RenderScriptx86ABIFixups.h
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
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