mirror of
https://src.fedoraproject.org/rpms/llvm.git
synced 2024-11-24 17:34:47 +00:00
54 lines
2.2 KiB
Diff
54 lines
2.2 KiB
Diff
From ddd23feca95aa2341654f225010675ea873ea38f Mon Sep 17 00:00:00 2001
|
|
From: Eli Friedman <eli.friedman@gmail.com>
|
|
Date: Mon, 4 Apr 2011 07:19:40 +0000
|
|
Subject: [PATCH] PR9585: add __decltype as a keyword. While I'm here,
|
|
alphabetize the list.
|
|
|
|
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@128809 91177308-0d34-0410-b5e6-96231b3b80d8
|
|
(cherry picked from commit cccc02ac215ffc16fc4b3ebfee5ee87c40e30505)
|
|
---
|
|
include/clang/Basic/TokenKinds.def | 9 +++++----
|
|
test/SemaCXX/decltype-98.cpp | 3 +++
|
|
2 files changed, 8 insertions(+), 4 deletions(-)
|
|
create mode 100644 test/SemaCXX/decltype-98.cpp
|
|
|
|
diff --git a/include/clang/Basic/TokenKinds.def b/include/clang/Basic/TokenKinds.def
|
|
index bc1a97e..df67d13 100644
|
|
--- a/include/clang/Basic/TokenKinds.def
|
|
+++ b/include/clang/Basic/TokenKinds.def
|
|
@@ -360,18 +360,19 @@ KEYWORD(__pixel , KEYALTIVEC)
|
|
|
|
// Alternate spelling for various tokens. There are GCC extensions in all
|
|
// languages, but should not be disabled in strict conformance mode.
|
|
-ALIAS("__attribute__", __attribute, KEYALL)
|
|
-ALIAS("__const" , const , KEYALL)
|
|
-ALIAS("__const__" , const , KEYALL)
|
|
ALIAS("__alignof__" , __alignof , KEYALL)
|
|
ALIAS("__asm" , asm , KEYALL)
|
|
ALIAS("__asm__" , asm , KEYALL)
|
|
+ALIAS("__attribute__", __attribute, KEYALL)
|
|
ALIAS("__complex" , _Complex , KEYALL)
|
|
ALIAS("__complex__" , _Complex , KEYALL)
|
|
+ALIAS("__const" , const , KEYALL)
|
|
+ALIAS("__const__" , const , KEYALL)
|
|
+ALIAS("__decltype" , decltype , KEYCXX)
|
|
ALIAS("__imag__" , __imag , KEYALL)
|
|
ALIAS("__inline" , inline , KEYALL)
|
|
ALIAS("__inline__" , inline , KEYALL)
|
|
-ALIAS("__nullptr" , nullptr , KEYCXX)
|
|
+ALIAS("__nullptr" , nullptr , KEYCXX)
|
|
ALIAS("__real__" , __real , KEYALL)
|
|
ALIAS("__restrict" , restrict , KEYALL)
|
|
ALIAS("__restrict__" , restrict , KEYALL)
|
|
diff --git a/test/SemaCXX/decltype-98.cpp b/test/SemaCXX/decltype-98.cpp
|
|
new file mode 100644
|
|
index 0000000..db52565
|
|
--- /dev/null
|
|
+++ b/test/SemaCXX/decltype-98.cpp
|
|
@@ -0,0 +1,3 @@
|
|
+// RUN: %clang_cc1 -std=c++98 -fsyntax-only -verify %s
|
|
+extern int x;
|
|
+__decltype(1) x = 3;
|
|
--
|
|
1.7.9.3
|
|
|