If there's any advantage, it's going to be in favor of the or. In reality, however, there's unlikely to be any difference on any reasonably modern CPU (or even anything but a really ancient one).
Basically, an or just sets the bit, and that's all. One two-input or gate is all that's needed, so you get exactly one gate of propagation delay.
An adder is a bit more complex: computing the current bit requires a three-input XOR. An XOR is normally composed to two levels of gates. In addition, it generates a carry, that has to be used as an input to the adder for the next bit. A "ripple carry adder", therefore, needs as many clock cycles as there are bits being added. There are cleverer ways of handling the problem where you handle carries separately from the rest of the addition, so you get a lower propagation delay, but in the worst case, even these don't help.
Most of that only matters if you're designing a CPU yourself though. If you're using a typical CPU, the gates in the functional units are running fast enough that it can/will do a full add in one clock cycle. Some reasonably recent ones can even do two adds per clock cycle in a single functional unit.
O()notation. If you need to set bits, use '|'. If you need to add bits, use '+'. A PRIMARY DIFFERENCE IS THAT '|' DOES NOT PERFORM CARRY, BUT '+' DOES. – Thomas Matthews Jun 1 '11 at 19:55+and|do different things. Code for what makes your code correct, not fast. If you need bitwise-or, use that, otherwise use add. @calc: Your comment doesn't answer his question, let me ask again: Have you profiled your code yet to see if this matters at all? If not, see the first part of my answer. Of course speed is "nice to have", that means nothing when it comes to actually deciding what to do. – GManNickG Jun 1 '11 at 20:53