| Index: runtime/vm/intermediate_language_ia32.cc
|
| ===================================================================
|
| --- runtime/vm/intermediate_language_ia32.cc (revision 8171)
|
| +++ runtime/vm/intermediate_language_ia32.cc (working copy)
|
| @@ -588,6 +588,26 @@
|
| }
|
|
|
|
|
| +LocationSummary* UnarySmiOpComp::MakeLocationSummary() const {
|
| + return NULL;
|
| +}
|
| +
|
| +
|
| +void UnarySmiOpComp::EmitNativeCode(FlowGraphCompiler* compile) {
|
| + UNIMPLEMENTED();
|
| +}
|
| +
|
| +
|
| +LocationSummary* NumberNegateComp::MakeLocationSummary() const {
|
| + return NULL;
|
| +}
|
| +
|
| +
|
| +void NumberNegateComp::EmitNativeCode(FlowGraphCompiler* compile) {
|
| + UNIMPLEMENTED();
|
| +}
|
| +
|
| +
|
| } // namespace dart
|
|
|
| #undef __
|
|
|