Enable multiply tests
[oota-llvm.git] / test / ExecutionEngine / test-arith.ll
1
2 void %test() {
3         %A = add sbyte 0, 12
4         %B = sub sbyte %A, %A
5         %C = mul sbyte %B, %B
6         ;%D = div sbyte %C, %C
7         ;%E = rem sbyte %D, %D
8         ;%F = div ubyte 5, 6
9         ;%G = rem ubyte 6, 5
10
11         %A = add short 0, 12
12         %B = sub short %A, %A
13         %C = mul short %B, %B
14         ;%D = div short %C, %C
15         ;%E = rem short %D, %D
16         ;%F = div ushort 5, 6
17         ;%G = rem uint 6, 5
18
19         %A = add int 0, 12
20         %B = sub int %A, %A
21         %C = mul int %B, %B
22         ;%D = div int %C, %C
23         ;%E = rem int %D, %D
24         ;%F = div uint 5, 6
25         ;%G = rem uint 6, 5
26
27         ret void
28 }