blob: d6cf965ace8a43528ba4b36b58c1da7419facef7 [file] [log] [blame]
Luke Drummond19459582016-07-28 14:21:07 +00001//===-- 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
15namespace lldb_private
16{
17namespace lldb_renderscript
18{
19
20bool
21fixupX86FunctionCalls(llvm::Module &module);
22
23bool
24fixupX86_64FunctionCalls(llvm::Module &module);
25}
26}
27#endif