diff options
| author | Daniel Sanders <daniel.sanders@imgtec.com> | 2014-05-02 19:25:52 +0000 |
|---|---|---|
| committer | Daniel Sanders <daniel.sanders@imgtec.com> | 2014-05-02 19:25:52 +0000 |
| commit | 6ef0a2f1be16382744e234b89ade1d34e6acbfe3 (patch) | |
| tree | 7feb32396e3b382121874afc4d1be7791839e125 /llvm/test | |
| parent | a53b3593f091ac3c6e2a0a8d28026e2432f5a7dd (diff) | |
| download | bcm5719-llvm-6ef0a2f1be16382744e234b89ade1d34e6acbfe3.tar.gz bcm5719-llvm-6ef0a2f1be16382744e234b89ade1d34e6acbfe3.zip | |
[tablegen] !strconcat accepts more than two arguments but this wasn't documented or tested.
Summary:
* Updated the documentation
* Added a test for >2 arguments
* Added a check for the lexical concatenation
* Made the existing test a bit stricter.
Reviewers: t.p.northover
Reviewed By: t.p.northover
Subscribers: t.p.northover, llvm-commits
Differential Revision: http://reviews.llvm.org/D3485
llvm-svn: 207865
Diffstat (limited to 'llvm/test')
| -rw-r--r-- | llvm/test/TableGen/strconcat.td | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/llvm/test/TableGen/strconcat.td b/llvm/test/TableGen/strconcat.td index dfb1a94d82c..f5d7512fd69 100644 --- a/llvm/test/TableGen/strconcat.td +++ b/llvm/test/TableGen/strconcat.td @@ -1,9 +1,21 @@ // RUN: llvm-tblgen %s | FileCheck %s -// CHECK: fufoo +// CHECK: class Y<string Y:S = ?> { +// CHECK: string T = !strconcat(Y:S, "foo"); +// CHECK: string T2 = !strconcat(Y:S, !strconcat("foo", !strconcat(Y:S, "bar"))); +// CHECK: string S = "foobar"; +// CHECK: } + +// CHECK: def Z { +// CHECK: string T = "fufoo"; +// CHECK: string T2 = "fufoofubar"; +// CHECK: string S = "foobar"; +// CHECK: } class Y<string S> { string T = !strconcat(S, "foo"); + // More than two arguments is equivalent to nested calls + string T2 = !strconcat(S, "foo", S, "bar"); // String values concatenate lexically, as in C. string S = "foo" "bar"; |

