Speed: if and while vs. if When Condition is False

So, if the condition is false, which would be faster:

if(condition)
while(condition)

or just

while(condition)

??