1*82d56013Sjoerg //===- ReduceModuleInlineAsm.h --------------------------------------------===// 2*82d56013Sjoerg // 3*82d56013Sjoerg // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4*82d56013Sjoerg // See https://llvm.org/LICENSE.txt for license information. 5*82d56013Sjoerg // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6*82d56013Sjoerg // 7*82d56013Sjoerg //===----------------------------------------------------------------------===// 8*82d56013Sjoerg 9*82d56013Sjoerg #ifndef LLVM_TOOLS_LLVM_REDUCE_DELTAS_REDUCE_MODULEINLINEASM_H 10*82d56013Sjoerg #define LLVM_TOOLS_LLVM_REDUCE_DELTAS_REDUCE_MODULEINLINEASM_H 11*82d56013Sjoerg 12*82d56013Sjoerg #include "Delta.h" 13*82d56013Sjoerg 14*82d56013Sjoerg namespace llvm { 15*82d56013Sjoerg void reduceModuleInlineAsmDeltaPass(TestRunner &Test); 16*82d56013Sjoerg } // namespace llvm 17*82d56013Sjoerg 18*82d56013Sjoerg #endif 19