[docs] Add LICENSE.txt to the root of the mono-repo
[llvm-project.git] / llvm / test / TableGen / cast-string.td
blobbe25d24a3b9fd054651fc46535714803b1b98911
1 // RUN: llvm-tblgen %s | FileCheck %s
2 // RUN: not llvm-tblgen -DERROR1 %s 2>&1 | FileCheck --check-prefix=ERROR1 %s
4 // This file tests the !cast bang operator with the result type string.
6 defvar IntList = [0, 1, 2, 3, 4, 5, 6];
8 // CHECK: def Rec0
9 // CHECK:   string str3 = "a string here"
11 def Rec0 {
12   string str = "a string";
13   string str2 = !cast<string>(str);
14   string str3 = !cast<string>(str # " here");
17 // CHECK: def Rec1
18 // CHECK:   string str = "42 -108"
20 def Rec1 {
21   int int1 = 42;
22   int int2 = -108;
23   string str = !cast<string>(int1) # " " # !cast<string>(int2);
26 // CHECK: def Rec2
27 // CHECK:   string str = "0, 1"
29 def Rec2 {
30   bit bit1 = false;
31   bit bit2 = true;
32   string str = !cast<string>(bit1) # ", " # !cast<string>(bit2);
35 // CHECK: def Rec3
36 // CHECK:   string str = "5 and 37"
38 def Rec3 {
39   bits<4> bits1 = 0b0101;
40   bits<8> bits2 = 0b00100101;
41   string str = !cast<string>(bits1) # " and " # !cast<string>(bits2);
44 // CHECK: def Rec4
45 // CHECK:   string str = "Rec1, Rec2"
47 def Rec4 {
48   string str = !cast<string>(Rec1) # ", " # !cast<string>(Rec2);
51 #ifdef ERROR1
53 // ERROR1: nitializer of 'str' in 'Rec5' could not be fully resolved
55 def Rec5 {
56   string str = !cast<string>(IntList);
59 #endif