diff options
Diffstat (limited to 'tools/llvmc2/doc/LLVMC-Tutorial.rst')
-rw-r--r-- | tools/llvmc2/doc/LLVMC-Tutorial.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/llvmc2/doc/LLVMC-Tutorial.rst b/tools/llvmc2/doc/LLVMC-Tutorial.rst index ffc1de9..9c6741e 100644 --- a/tools/llvmc2/doc/LLVMC-Tutorial.rst +++ b/tools/llvmc2/doc/LLVMC-Tutorial.rst @@ -66,7 +66,7 @@ Contents of the file ``Simple.td`` look like this:: def LanguageMap : LanguageMap<[LangToSuffixes<"c", ["c"]>]>; // Compilation graph - def CompilationGraph : CompilationGraph<[Edge<root, gcc>]>; + def CompilationGraph : CompilationGraph<[Edge<"root", "gcc">]>; As you can see, this file consists of three parts: tool descriptions, language map, and the compilation graph definition. |