llvm-project
33 строки · 1.0 Кб
1//==--- FlangOptionDocs.td - Option documentation -------------------------===//
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
9def GlobalDocumentation {
10code Intro =[{..
11-------------------------------------------------------------------
12NOTE: This file is automatically generated by running clang-tblgen
13-gen-opt-docs. Do not edit this file by hand!!
14-------------------------------------------------------------------
15
16=====================================
17Flang command line argument reference
18=====================================
19.. contents::
20:local:
21
22Introduction
23============
24
25}];
26
27string Program = "Flang";
28list<string> VisibilityMask = ["FlangOption"];
29list<string> IgnoreFlags = ["HelpHidden", "Unsupported", "Ignored"];
30}
31
32#define GENERATING_DOCS
33include "Options.td"
34