blob: b2caea49bd1e13babdd7193a069df78c51a2f713 [file] [log] [blame]
Alexander Shaposhnikov696bd632016-11-26 05:23:44 +00001//===-- RenderScriptx86ABIFixups.h ------------------------------*- C++ -*-===//
Luke Drummond19459582016-07-28 14:21:07 +00002//
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
Kate Stoneb9c1b512016-09-06 20:57:50 +000015namespace lldb_private {
16namespace lldb_renderscript {
Luke Drummond19459582016-07-28 14:21:07 +000017
Kate Stoneb9c1b512016-09-06 20:57:50 +000018bool fixupX86FunctionCalls(llvm::Module &module);
Luke Drummond19459582016-07-28 14:21:07 +000019
Kate Stoneb9c1b512016-09-06 20:57:50 +000020bool fixupX86_64FunctionCalls(llvm::Module &module);
Luke Drummond19459582016-07-28 14:21:07 +000021}
22}
23#endif