mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 18:54:02 +01:00
990c7c241f
llvm-svn: 208393
19 lines
553 B
TableGen
19 lines
553 B
TableGen
// RUN: llvm-tblgen %s | FileCheck %s
|
|
|
|
// CHECK: class Y<list<string> Y:S = ?> {
|
|
// CHECK: list<string> T1 = !listconcat(Y:S, ["foo"]);
|
|
// CHECK: list<string> T2 = !listconcat(Y:S, !listconcat(["foo"], !listconcat(Y:S, ["bar", "baz"])));
|
|
// CHECK: }
|
|
|
|
// CHECK: def Z {
|
|
// CHECK: list<string> T1 = ["fu", "foo"];
|
|
// CHECK: list<string> T2 = ["fu", "foo", "fu", "bar", "baz"];
|
|
// CHECK: }
|
|
|
|
class Y<list<string> S> {
|
|
list<string> T1 = !listconcat(S, ["foo"]);
|
|
list<string> T2 = !listconcat(S, ["foo"], S, ["bar", "baz"]);
|
|
}
|
|
|
|
def Z : Y<["fu"]>;
|