clang 18.0.0git
CodeGenOptions.cpp
Go to the documentation of this file.
1//===--- CodeGenOptions.cpp -----------------------------------------------===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8
10#include <string.h>
11
12namespace clang {
13
15#define CODEGENOPT(Name, Bits, Default) Name = Default;
16#define ENUM_CODEGENOPT(Name, Type, Bits, Default) set##Name(Default);
17#include "clang/Basic/CodeGenOptions.def"
18
19 RelocationModel = llvm::Reloc::PIC_;
20 memcpy(CoverageVersion, "408*", 4);
21}
22
23} // end namespace clang
__DEVICE__ void * memcpy(void *__a, const void *__b, size_t __c)
char CoverageVersion[4]
The version string to put into coverage files.
llvm::Reloc::Model RelocationModel
The name of the relocation model to use.