Don't mark scalar integer multiplication as Expand on x86, since x86
[oota-llvm.git] / test / TableGen / TemplateArgRename.td
index b15f21b19d2ba290d208af40b1893a7f03347a43..535c2e430129534067adc02f267d8b5ec8bc9fbb 100644 (file)
@@ -1,9 +1,17 @@
-// tblgen %s
+// RUN: tblgen %s
 
 // Make sure there is no collision between XX and XX.
+def S;
 
 class Before<int XX>;
 class After : Before<4> {
   dag XX = (S);
 }
 
+
+
+class C1<int X> {
+  int Y = X;
+}
+class C2<int Y, dag X> : C1<Y>;
+