| OLD | NEW |
| 1 //===-- NaCl.h - NaCl Transformations ---------------------------*- C++ -*-===// | 1 //===-- NaCl.h - NaCl Transformations ---------------------------*- C++ -*-===// |
| 2 // | 2 // |
| 3 // The LLVM Compiler Infrastructure | 3 // The LLVM Compiler Infrastructure |
| 4 // | 4 // |
| 5 // This file is distributed under the University of Illinois Open Source | 5 // This file is distributed under the University of Illinois Open Source |
| 6 // License. See LICENSE.TXT for details. | 6 // License. See LICENSE.TXT for details. |
| 7 // | 7 // |
| 8 //===----------------------------------------------------------------------===// | 8 //===----------------------------------------------------------------------===// |
| 9 | 9 |
| 10 #ifndef LLVM_TRANSFORMS_NACL_H | 10 #ifndef LLVM_TRANSFORMS_NACL_H |
| 11 #define LLVM_TRANSFORMS_NACL_H | 11 #define LLVM_TRANSFORMS_NACL_H |
| 12 | 12 |
| 13 namespace llvm { | 13 namespace llvm { |
| 14 | 14 |
| 15 class FunctionPass; |
| 15 class ModulePass; | 16 class ModulePass; |
| 16 | 17 |
| 18 FunctionPass *createExpandConstantExprPass(); |
| 17 ModulePass *createExpandCtorsPass(); | 19 ModulePass *createExpandCtorsPass(); |
| 18 ModulePass *createExpandTlsPass(); | 20 ModulePass *createExpandTlsPass(); |
| 19 ModulePass *createExpandTlsConstantExprPass(); | 21 ModulePass *createExpandTlsConstantExprPass(); |
| 20 | 22 |
| 21 } | 23 } |
| 22 | 24 |
| 23 #endif | 25 #endif |
| OLD | NEW |