| LEFT | RIGHT |
| 1 //===-- llvm/Target/TargetOptions.h - Target Options ------------*- C++ -*-===// | 1 //===-- llvm/Target/TargetOptions.h - Target Options ------------*- 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 // This file defines command line option flags that are shared across various | 10 // This file defines command line option flags that are shared across various |
| (...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 132 /// compile time. | 132 /// compile time. |
| 133 extern bool EnableFastISel; | 133 extern bool EnableFastISel; |
| 134 | 134 |
| 135 /// StrongPHIElim - This flag enables more aggressive PHI elimination | 135 /// StrongPHIElim - This flag enables more aggressive PHI elimination |
| 136 /// wth earlier copy coalescing. | 136 /// wth earlier copy coalescing. |
| 137 extern bool StrongPHIElim; | 137 extern bool StrongPHIElim; |
| 138 | 138 |
| 139 } // End llvm namespace | 139 } // End llvm namespace |
| 140 | 140 |
| 141 #endif | 141 #endif |
| LEFT | RIGHT |