Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(136)

Side by Side Diff: src/IceTargetLowering.cpp

Issue 428733003: A couple of fixes for using Makefile.standalone on Mac. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: line wrap Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/IceTargetLowering.h ('k') | src/IceTargetLoweringX8632.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
OLDNEW
« no previous file with comments | « src/IceTargetLowering.h ('k') | src/IceTargetLoweringX8632.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698