Add a new macro to be used for the end of enum lists.
authorChris Lattner <sabre@nondot.org>
Fri, 16 Jul 2004 00:01:05 +0000 (00:01 +0000)
committerChris Lattner <sabre@nondot.org>
Fri, 16 Jul 2004 00:01:05 +0000 (00:01 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14862 91177308-0d34-0410-b5e6-96231b3b80d8

include/Support/CommandLine.h
include/llvm/Support/CommandLine.h

index b7bd62a38074886cf1c695ea359ffe96fe4275e1..7455f623ecdd647ada5b62441fc8561732e7d0c0 100644 (file)
@@ -292,6 +292,7 @@ LocationClass<Ty> location(Ty &L) { return LocationClass<Ty>(L); }
 //
 #define clEnumVal(ENUMVAL, DESC) #ENUMVAL, (int)ENUMVAL, DESC
 #define clEnumValN(ENUMVAL, FLAGNAME, DESC) FLAGNAME, (int)ENUMVAL, DESC
+#define clEnumValEnd ((void*)0)
 
 // values - For custom data types, allow specifying a group of values together
 // as the values that go into the mapping that the option handler uses.  Note
index b7bd62a38074886cf1c695ea359ffe96fe4275e1..7455f623ecdd647ada5b62441fc8561732e7d0c0 100644 (file)
@@ -292,6 +292,7 @@ LocationClass<Ty> location(Ty &L) { return LocationClass<Ty>(L); }
 //
 #define clEnumVal(ENUMVAL, DESC) #ENUMVAL, (int)ENUMVAL, DESC
 #define clEnumValN(ENUMVAL, FLAGNAME, DESC) FLAGNAME, (int)ENUMVAL, DESC
+#define clEnumValEnd ((void*)0)
 
 // values - For custom data types, allow specifying a group of values together
 // as the values that go into the mapping that the option handler uses.  Note