Index: vm/flow_graph_compiler_ia32.cc |
=================================================================== |
--- vm/flow_graph_compiler_ia32.cc (revision 9829) |
+++ vm/flow_graph_compiler_ia32.cc (working copy) |
@@ -14,6 +14,7 @@ |
#include "vm/object_store.h" |
#include "vm/parser.h" |
#include "vm/stub_code.h" |
+#include "vm/symbols.h" |
namespace dart { |
@@ -584,7 +585,7 @@ |
if (dst_type.IsMalformed()) { |
const Error& error = Error::Handle(dst_type.malformed_error()); |
const String& error_message = String::ZoneHandle( |
- String::NewSymbol(error.ToErrorCString())); |
+ Symbols::New(error.ToErrorCString())); |
__ PushObject(Object::ZoneHandle()); // Make room for the result. |
__ pushl(EAX); // Push the source object. |
__ PushObject(dst_name); // Push the name of the destination. |