Given the following function call:
f(g(), h())
since the order of evaluation of function arguments is unspecified (still the case in C++11 as far as I'm aware), could an implementation theoretically execute g() and h() in parallel?
Such a parallelisation could only kick in were g and h known to be fairly trivial (in the most obvious case, accessing only data local to their bodies) so as not to introduce concurrency issues but, beyond that restriction I can't see anything to prohibit it.
So, does the standard allow it? Even if only by the as-if rule?
(In this answer, Mankarse asserts otherwise; however, he does not cite the standard, and my read-through of [expr.call] hasn't revealed any obvious wording.)

gandh(in which case the compiler probably could prove it's equivalent to some sequencial evaluation anyway), and then it wouldn't really have much benefit: creating a thread would probably be more expensive than evaluating either of the functions. — In case of bigger functions, where it could in principle boost performance greatly, it would be hard to maintain control over the possible explosion of recursive thread spawns. Even Haskell doesn't do this, which has everywhere freedom of evaluation order and has lightweight threads. – leftaroundabout Nov 18 '12 at 23:36