Alexander Shaposhnikov | 696bd63 | 2016-11-26 05:23:44 +0000 | [diff] [blame^] | 1 | //===-- RenderScriptx86ABIFixups.h ------------------------------*- C++ -*-===// |
Luke Drummond | 1945958 | 2016-07-28 14:21:07 +0000 | [diff] [blame] | 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 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 15 | namespace lldb_private { |
| 16 | namespace lldb_renderscript { |
Luke Drummond | 1945958 | 2016-07-28 14:21:07 +0000 | [diff] [blame] | 17 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 18 | bool fixupX86FunctionCalls(llvm::Module &module); |
Luke Drummond | 1945958 | 2016-07-28 14:21:07 +0000 | [diff] [blame] | 19 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 20 | bool fixupX86_64FunctionCalls(llvm::Module &module); |
Luke Drummond | 1945958 | 2016-07-28 14:21:07 +0000 | [diff] [blame] | 21 | } |
| 22 | } |
| 23 | #endif |