summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorMikhail Glushenkov <foldr@codedgers.com>2008-05-08 20:02:03 +0000
committerMikhail Glushenkov <foldr@codedgers.com>2008-05-08 20:02:03 +0000
commit21607fa63c3294f7417834133d9482141e19200e (patch)
treed84ce521a12fcee8c7dcb60ac568253b852e942b /tools
parent76e2e4a2bc78a0ca2617e3b336081e29cb00d749 (diff)
downloadllvm-21607fa63c3294f7417834133d9482141e19200e.tar.gz
llvm-21607fa63c3294f7417834133d9482141e19200e.tar.bz2
llvm-21607fa63c3294f7417834133d9482141e19200e.tar.xz
A small refactoring (extract method) + some comment fixes.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@50867 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools')
-rw-r--r--tools/llvmc2/Common.td3
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/llvmc2/Common.td b/tools/llvmc2/Common.td
index 32e0180f8b..b04596fb76 100644
--- a/tools/llvmc2/Common.td
+++ b/tools/llvmc2/Common.td
@@ -15,7 +15,7 @@ class Tool<list<dag> l> {
list<dag> properties = l;
}
-// Special Tool instance - graph root.
+// Special Tool instance - the root node of the compilation graph.
def root : Tool<[]>;
@@ -47,6 +47,7 @@ def required;
// Possible edge properties
+// 'Atomic' properties.
def switch_on;
def parameter_equals;
def element_in_list;