aboutsummaryrefslogtreecommitdiff
path: root/lib/Target/JSBackend/OptPasses.h
blob: 81e3b5ed1843ffaceeea9d72292db4ae35bf1840 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
//===-- JSTargetMachine.h - TargetMachine for the C++ 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 *createSimplifyAllocasPass();

  extern Pass *createExpandI64Pass();

} // End llvm namespace

#endif