diff --git a/src/Symfony/Bundle/FrameworkBundle/Command/ServerStartCommand.php b/src/Symfony/Bundle/FrameworkBundle/Command/ServerStartCommand.php
index c5ec95d4d4611..f5fe6b6921b1d 100644
--- a/src/Symfony/Bundle/FrameworkBundle/Command/ServerStartCommand.php
+++ b/src/Symfony/Bundle/FrameworkBundle/Command/ServerStartCommand.php
@@ -71,11 +71,6 @@ protected function configure()
*/
protected function execute(InputInterface $input, OutputInterface $output)
{
- if (defined('HHVM_VERSION')) {
- $output->writeln('This command is not supported on HHVM.');
-
- return 1;
- }
if (!extension_loaded('pcntl')) {
$output->writeln('This command needs the pcntl extension to run.');
$output->writeln('You can either install it or use the server:run command instead to run the built-in web server.');