Changes to support making the shift instructions be true BinaryOperators.
This feature is needed in order to support shifts of more than 255 bits
on large integer types.  This changes the syntax for llvm assembly to
make shl, ashr and lshr instructions look like a binary operator:
   shl i32 %X, 1
instead of
   shl i32 %X, i8 1
Additionally, this should help a few passes perform additional optimizations.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@33776 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/test/Integer/a63.ll b/test/Integer/a63.ll
index ec348ff..6dadaf7 100644
--- a/test/Integer/a63.ll
+++ b/test/Integer/a63.ll
@@ -10,12 +10,12 @@
 @f = constant i63 sub(i63 0 , i63 9223372036854775807)
 @g = constant i63 sub(i63 2 , i63 9223372036854775807)
 
-@h = constant i63 shl(i63 1 , i8 63)
-@i = constant i63 shl(i63 1 , i8 62)
-@j = constant i63 lshr(i63 9223372036854775807 , i8 62)
-@k = constant i63 lshr(i63 9223372036854775807 , i8 63)
-@l = constant i63 ashr(i63 9223372036854775807 , i8 62)
-@m = constant i63 ashr(i63 9223372036854775807 , i8 63)
+@h = constant i63 shl(i63 1 , i63 63)
+@i = constant i63 shl(i63 1 , i63 62)
+@j = constant i63 lshr(i63 9223372036854775807 , i63 62)
+@k = constant i63 lshr(i63 9223372036854775807 , i63 63)
+@l = constant i63 ashr(i63 9223372036854775807 , i63 62)
+@m = constant i63 ashr(i63 9223372036854775807 , i63 63)
 
 @n = constant i63 mul(i63 9223372036854775807, i63 2) 
 @q = constant i63 sdiv(i63 -1,                 i63 4611686018427387903)