diff options
| author | Chris Lattner <sabre@nondot.org> | 2002-11-02 20:28:47 +0000 |
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2002-11-02 20:28:47 +0000 |
| commit | 97c2c655c86ce26ddc739cdc669d2b15987309ed (patch) | |
| tree | 0e2cfc65c418095b77b7bc402492137ffe40b864 | |
| parent | 656474b6803c3c8a20c5aa44e49b9dc51da64768 (diff) | |
| download | bcm5719-llvm-97c2c655c86ce26ddc739cdc669d2b15987309ed.tar.gz bcm5719-llvm-97c2c655c86ce26ddc739cdc669d2b15987309ed.zip | |
Enable multiply tests
llvm-svn: 4505
| -rw-r--r-- | llvm/test/Regression/Jello/test-arith.ll | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/test/Regression/Jello/test-arith.ll b/llvm/test/Regression/Jello/test-arith.ll index 8f04cbaf4f5..c0dd840ced3 100644 --- a/llvm/test/Regression/Jello/test-arith.ll +++ b/llvm/test/Regression/Jello/test-arith.ll @@ -2,7 +2,7 @@ void %test() { %A = add sbyte 0, 12 %B = sub sbyte %A, %A - ;%C = mul sbyte %B, %B + %C = mul sbyte %B, %B ;%D = div sbyte %C, %C ;%E = rem sbyte %D, %D ;%F = div ubyte 5, 6 @@ -10,7 +10,7 @@ void %test() { %A = add short 0, 12 %B = sub short %A, %A - ;%C = mul short %B, %B + %C = mul short %B, %B ;%D = div short %C, %C ;%E = rem short %D, %D ;%F = div ushort 5, 6 @@ -18,7 +18,7 @@ void %test() { %A = add int 0, 12 %B = sub int %A, %A - ;%C = mul int %B, %B + %C = mul int %B, %B ;%D = div int %C, %C ;%E = rem int %D, %D ;%F = div uint 5, 6 |

