Handle "bool" in all places that touch _Bool.  
This fixes code like "if((bool)x) {}" for example.

Patch by Nate Begeman.


git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@44159 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/Parse/ParseDecl.cpp b/Parse/ParseDecl.cpp
index 5feb40b..3c2eb2a 100644
--- a/Parse/ParseDecl.cpp
+++ b/Parse/ParseDecl.cpp
@@ -937,6 +937,7 @@
   case tok::kw_int:
   case tok::kw_float:
   case tok::kw_double:
+  case tok::kw_bool:
   case tok::kw__Bool:
   case tok::kw__Decimal32:
   case tok::kw__Decimal64:
@@ -985,6 +986,7 @@
   case tok::kw_int:
   case tok::kw_float:
   case tok::kw_double:
+  case tok::kw_bool:
   case tok::kw__Bool:
   case tok::kw__Decimal32:
   case tok::kw__Decimal64: