[SystemZ] Use A(G)SI when spilling the target of a constant addition
[oota-llvm.git] / test / TableGen / MultiClassDefName.td
1 // RUN: llvm-tblgen %s | FileCheck %s
2
3 // CHECK: WorldHelloCC
4 // CHECK-NOT: WorldHelloCC
5
6 class C<string n> {
7   string name = n;
8 }
9
10 multiclass Names<string n, string m> {
11    def CC : C<n>;
12    def World#NAME#CC : C<m>;
13 }
14
15 defm Hello : Names<"hello", "world">;