Which is a faster way to square a number in vb6?

Code:
newval=oldval^2
or
Code:
newval=oldval*oldval
Knowing which is faster, and thus using proper optimization, could possibly speed up some of my graphics processing routines, which depend on processing MANY input values in as short a time as possible.