blob: 1ceb0a1cc82f7c35e658fd6c3237c523464c6cf1 [file] [log] [blame] [edit]
//===-- BinaryenTargetMachine.h - TargetMachine for the Binaryen Backend ---*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===---------------------------------------------------------------------===//
#ifndef OPT_PASSES_H
#define OPT_PASSES_H
#include "llvm/Pass.h"
namespace llvm {
extern FunctionPass *createEmscriptenSimplifyAllocasPass();
extern ModulePass *createEmscriptenRemoveLLVMAssumePass();
extern FunctionPass *createEmscriptenExpandBigSwitchesPass();
} // End llvm namespace
#endif