restrict is not a keyword in gnu89 mode.  Change TokenKinds.def to 
reflect that.



git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@72500 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/test/Sema/gnu89.c b/test/Sema/gnu89.c
new file mode 100644
index 0000000..4601cbe
--- /dev/null
+++ b/test/Sema/gnu89.c
@@ -0,0 +1,3 @@
+// RUN: clang-cc %s -std=gnu89 -pedantic -fsyntax-only -verify
+
+int f(int restrict);