SQL Server will generate an optimized plan for each statement it executes. You don't have to order your where clause to get that benefit. The only garuntee you have is that it will run statements in order so:
SELECT A FROM B WHERE C
SELECT D FROM E WHERE F
will run the first line before the second.