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

Side by Side Diff: src/compiler/linkage.cc

Issue 791543003: Fix a typo error. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 6 years 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 | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 the V8 project authors. All rights reserved. 1 // Copyright 2014 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "src/code-stubs.h" 5 #include "src/code-stubs.h"
6 #include "src/compiler.h" 6 #include "src/compiler.h"
7 #include "src/compiler/linkage.h" 7 #include "src/compiler/linkage.h"
8 #include "src/compiler/node.h" 8 #include "src/compiler/node.h"
9 #include "src/compiler/pipeline.h" 9 #include "src/compiler/pipeline.h"
10 #include "src/scopes.h" 10 #include "src/scopes.h"
(...skipping 222 matching lines...) Expand 10 before | Expand all | Expand 10 after
233 CallDescriptor* Linkage::GetRuntimeCallDescriptor( 233 CallDescriptor* Linkage::GetRuntimeCallDescriptor(
234 Runtime::FunctionId function, int parameter_count, 234 Runtime::FunctionId function, int parameter_count,
235 Operator::Properties properties, Zone* zone) { 235 Operator::Properties properties, Zone* zone) {
236 UNIMPLEMENTED(); 236 UNIMPLEMENTED();
237 return NULL; 237 return NULL;
238 } 238 }
239 239
240 240
241 CallDescriptor* Linkage::GetStubCallDescriptor( 241 CallDescriptor* Linkage::GetStubCallDescriptor(
242 const CallInterfaceDescriptor& descriptor, int stack_parameter_count, 242 const CallInterfaceDescriptor& descriptor, int stack_parameter_count,
243 CallDescriptor::Flags flags, OperatorProperties::Properties properties, 243 CallDescriptor::Flags flags, Operator::Properties properties,
244 Zone* zone) { 244 Zone* zone) {
245 UNIMPLEMENTED(); 245 UNIMPLEMENTED();
246 return NULL; 246 return NULL;
247 } 247 }
248 248
249 249
250 CallDescriptor* Linkage::GetSimplifiedCDescriptor(Zone* zone, 250 CallDescriptor* Linkage::GetSimplifiedCDescriptor(Zone* zone,
251 MachineSignature* sig) { 251 MachineSignature* sig) {
252 UNIMPLEMENTED(); 252 UNIMPLEMENTED();
253 return NULL; 253 return NULL;
254 } 254 }
255 #endif // !V8_TURBOFAN_BACKEND 255 #endif // !V8_TURBOFAN_BACKEND
256 } 256 }
257 } 257 }
258 } // namespace v8::internal::compiler 258 } // namespace v8::internal::compiler
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698