summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorMikhail Glushenkov <foldr@codedgers.com>2008-05-09 08:27:26 +0000
committerMikhail Glushenkov <foldr@codedgers.com>2008-05-09 08:27:26 +0000
commit8e7254cd44465e134fa28c813930856a8e7db611 (patch)
tree607a3ad35612e75d87da70fac736b993dfc41007 /tools
parent4ca7913072a60b11eda9da8aa8a82c7cec18bd85 (diff)
downloadllvm-8e7254cd44465e134fa28c813930856a8e7db611.tar.gz
llvm-8e7254cd44465e134fa28c813930856a8e7db611.tar.bz2
llvm-8e7254cd44465e134fa28c813930856a8e7db611.tar.xz
Reapply 50867: A small refactoring (extract method) + some comment fixes.
Fixed the build breakage, sorry for that. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@50895 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;