Fixing MSVC build breaks in transform dialect code from PR #11738. (#11757)

Note that `ll` is the suffix for int64_t, not `l`. When forward
declaring the types must match (AbstractReductionStrategy was defined as
struct but declared elsewhere as class).
diff --git a/compiler/src/iree/compiler/Codegen/TransformDialectStrategies/Common/Common.h b/compiler/src/iree/compiler/Codegen/TransformDialectStrategies/Common/Common.h
index ffaf2a1..66c4e1a 100644
--- a/compiler/src/iree/compiler/Codegen/TransformDialectStrategies/Common/Common.h
+++ b/compiler/src/iree/compiler/Codegen/TransformDialectStrategies/Common/Common.h
@@ -14,7 +14,7 @@
 namespace mlir {
 namespace iree_compiler {
 
-class AbstractReductionStrategy;
+struct AbstractReductionStrategy;
 
 //===----------------------------------------------------------------------===//
 // General helpers.
diff --git a/compiler/src/iree/compiler/Codegen/TransformDialectStrategies/GPU/Common.cpp b/compiler/src/iree/compiler/Codegen/TransformDialectStrategies/GPU/Common.cpp
index 3ae7672..692dae0 100644
--- a/compiler/src/iree/compiler/Codegen/TransformDialectStrategies/GPU/Common.cpp
+++ b/compiler/src/iree/compiler/Codegen/TransformDialectStrategies/GPU/Common.cpp
@@ -69,7 +69,7 @@
 int64_t mlir::iree_compiler::gpu::scaleUpByBitWidth(int64_t value,
                                                     int64_t bitWidth) {
   assert((bitWidth & bitWidth - 1) == 0 && "bitWidth must be a power of 2");
-  return std::max((value * 32) / bitWidth, 1l);
+  return std::max((value * 32) / bitWidth, int64_t(1));
 }
 
 /// Adjust the number of warps to use to benefit from packing multiple smaller
@@ -83,7 +83,7 @@
     if (numWarpsToUse % factor == 0) break;
   numWarpsToUse /= factor;
   // Try to scale to using 128b elements in warp shuffles.
-  return std::max(numWarpsToUse / 4, 1l);
+  return std::max(numWarpsToUse / 4, int64_t(1));
 }
 
 /// Compute the (splitPoint, vectorSize) pair to break [0 .. upperBound] into
@@ -107,7 +107,9 @@
                                                      int64_t minMultiple,
                                                      int64_t maxVectorSize) {
   assert((maxVectorSize & (maxVectorSize - 1)) == 0 && "must be a power of 2");
-  if (ShapedType::isDynamic(upperBound)) return std::make_pair(0l, 1l);
+  if (ShapedType::isDynamic(upperBound)) {
+    return std::make_pair(int64_t(0), int64_t(1));
+  }
   for (int64_t vectorSize = maxVectorSize; vectorSize >= 1; vectorSize >>= 1) {
     int64_t splitPoint =
         iree_compiler::previousMultipleOf(upperBound, minMultiple * vectorSize);
@@ -117,7 +119,7 @@
                  : std::make_pair(splitPoint, vectorSize);
     }
   }
-  return std::make_pair(0l, 1l);
+  return std::make_pair(int64_t(0), int64_t(1));
 }
 
 //===----------------------------------------------------------------------===//