| Index: runtime/vm/code_generator.cc
|
| ===================================================================
|
| --- runtime/vm/code_generator.cc (revision 30802)
|
| +++ runtime/vm/code_generator.cc (working copy)
|
| @@ -1703,6 +1703,14 @@
|
| }
|
|
|
|
|
| +void SinCos(double arg, double* cos_res, double* sin_res) {
|
| + // The compiler may merge the calls to sincos, if supported. This
|
| + // typically occurs only when compiling for 64-bit targets.
|
| + *cos_res = cos(arg);
|
| + *sin_res = sin(arg);
|
| +}
|
| +
|
| +
|
| // Update global type feedback recorded for a field recording the assignment
|
| // of the given value.
|
| // Arg0: Field object;
|
|
|