2016-11-26 05:23:44 +00:00
|
|
|
//===-- RenderScriptx86ABIFixups.h ------------------------------*- C++ -*-===//
|
2016-07-28 14:21:07 +00:00
|
|
|
//
|
2019-01-19 08:50:56 +00:00
|
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
2016-07-28 14:21:07 +00:00
|
|
|
//
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
2020-02-17 15:57:45 -08:00
|
|
|
#ifndef LLDB_SOURCE_PLUGINS_LANGUAGERUNTIME_RENDERSCRIPT_RENDERSCRIPTRUNTIME_RENDERSCRIPTX86ABIFIXUPS_H
|
|
|
|
|
#define LLDB_SOURCE_PLUGINS_LANGUAGERUNTIME_RENDERSCRIPT_RENDERSCRIPTRUNTIME_RENDERSCRIPTX86ABIFIXUPS_H
|
2016-07-28 14:21:07 +00:00
|
|
|
|
|
|
|
|
#include "llvm/IR/Module.h"
|
|
|
|
|
|
|
|
|
|
namespace lldb_private {
|
|
|
|
|
namespace lldb_renderscript {
|
|
|
|
|
|
|
|
|
|
bool fixupX86FunctionCalls(llvm::Module &module);
|
|
|
|
|
|
|
|
|
|
bool fixupX86_64FunctionCalls(llvm::Module &module);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
#endif
|