OLD | NEW |
1 //===- subzero/src/IceTargetLowering.cpp - Basic lowering implementation --===// | 1 //===- subzero/src/IceTargetLowering.cpp - Basic lowering implementation --===// |
2 // | 2 // |
3 // The Subzero Code Generator | 3 // The Subzero Code Generator |
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 implements the skeleton of the TargetLowering class, | 10 // This file implements the skeleton of the TargetLowering class, |
(...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
191 return IceTargetGlobalInitX8664::create(Ctx); | 191 return IceTargetGlobalInitX8664::create(Ctx); |
192 if (Target == Target_ARM32) | 192 if (Target == Target_ARM32) |
193 return IceTargetGlobalInitARM32::create(Ctx); | 193 return IceTargetGlobalInitARM32::create(Ctx); |
194 if (Target == Target_ARM64) | 194 if (Target == Target_ARM64) |
195 return IceTargetGlobalInitARM64::create(Ctx); | 195 return IceTargetGlobalInitARM64::create(Ctx); |
196 #endif | 196 #endif |
197 llvm_unreachable("Unsupported target"); | 197 llvm_unreachable("Unsupported target"); |
198 return NULL; | 198 return NULL; |
199 } | 199 } |
200 | 200 |
| 201 TargetGlobalInitLowering::~TargetGlobalInitLowering() {} |
| 202 |
201 } // end of namespace Ice | 203 } // end of namespace Ice |
OLD | NEW |