[NFC][RemoveDIs] Prefer iterators over inst-pointers in InstCombine
[llvm-project.git] / llvm / test / TableGen / string_ops.td
blob68581dd9cd65548c0814fd2ad238dd588c0e26b4
1 // RUN: llvm-tblgen %s | FileCheck %s
3 class ToLower<string str> {
4   string s = !tolower(str);
7 class ToUpper<string str> {
8   string s = !toupper(str);
11 // CHECK-LABEL: def LOWER1 {
12 // CHECK: string s = "str";
13 // CHECK: }
14 def LOWER1: ToLower<"STR">;
16 // CHECK-LABEL: def LOWER2 {
17 // CHECK: string s = "str";
18 // CHECK: }
19 def LOWER2 : ToLower<"Str">;
21 // CHECK-LABEL: def LOWER3 {
22 // CHECK: string s = "str";
23 // CHECK: }
24 def LOWER3 : ToLower<"STr">;
26 // CHECK-LABEL: def UPPER1 {
27 // CHECK: string s = "STR";
28 // CHECK: }
29 def UPPER1 : ToUpper<"str">;
31 // CHECK-LABEL: def UPPER2 {
32 // CHECK: string s = "STR";
33 // CHECK: }
34 def UPPER2 : ToUpper<"sTr">;
36 // CHECK-LABEL: def UPPER3 {
37 // CHECK: string s = "STR";
38 // CHECK: }
39 def UPPER3 : ToUpper<"sTR">;