summaryrefslogtreecommitdiff
path: root/test/TableGen/math.td
diff options
context:
space:
mode:
Diffstat (limited to 'test/TableGen/math.td')
-rw-r--r--test/TableGen/math.td3
1 files changed, 3 insertions, 0 deletions
diff --git a/test/TableGen/math.td b/test/TableGen/math.td
index 1f3a500f08..bde267a652 100644
--- a/test/TableGen/math.td
+++ b/test/TableGen/math.td
@@ -5,11 +5,14 @@ class Int<int value> {
}
def v1024 : Int<1024>;
+// CHECK: def v1024
// CHECK: Value = 1024
def v1025 : Int<!add(v1024.Value, 1)>;
+// CHECK: def v1025
// CHECK: Value = 1025
def v2048 : Int<!add(v1024.Value, v1024.Value)>;
+// CHECK: def v2048
// CHECK: Value = 2048