
This brings our tree to NetBSD 7.0, as found on -current on the 10-10-2015. This updates: - LLVM to 3.6.1 - GCC to GCC 5.1 - Replace minix/commands/zdump with usr.bin/zdump - external/bsd/libelf has moved to /external/bsd/elftoolchain/ - Import ctwm - Drop sprintf from libminc Change-Id: I149836ac18e9326be9353958bab9b266efb056f0
44 lines
1.4 KiB
C++
44 lines
1.4 KiB
C++
//===--- LangStandards.cpp - Language Standard Definitions ----------------===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "clang/Frontend/LangStandard.h"
|
|
#include "llvm/ADT/StringSwitch.h"
|
|
#include "llvm/Support/ErrorHandling.h"
|
|
using namespace clang;
|
|
using namespace clang::frontend;
|
|
|
|
#define LANGSTANDARD(id, name, desc, features) \
|
|
static const LangStandard Lang_##id = { name, desc, features };
|
|
#include "clang/Frontend/LangStandards.def"
|
|
|
|
const LangStandard &LangStandard::getLangStandardForKind(Kind K) {
|
|
switch (K) {
|
|
case lang_unspecified:
|
|
llvm::report_fatal_error("getLangStandardForKind() on unspecified kind");
|
|
#define LANGSTANDARD(id, name, desc, features) \
|
|
case lang_##id: return Lang_##id;
|
|
#include "clang/Frontend/LangStandards.def"
|
|
}
|
|
llvm_unreachable("Invalid language kind!");
|
|
}
|
|
|
|
const LangStandard *LangStandard::getLangStandardForName(StringRef Name) {
|
|
Kind K = llvm::StringSwitch<Kind>(Name)
|
|
#define LANGSTANDARD(id, name, desc, features) \
|
|
.Case(name, lang_##id)
|
|
#include "clang/Frontend/LangStandards.def"
|
|
.Default(lang_unspecified);
|
|
if (K == lang_unspecified)
|
|
return nullptr;
|
|
|
|
return &getLangStandardForKind(K);
|
|
}
|
|
|
|
|