aboutsummaryrefslogtreecommitdiffstats
path: root/test/mppa/instr/i32.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/mppa/instr/i32.c')
-rw-r--r--test/mppa/instr/i32.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/mppa/instr/i32.c b/test/mppa/instr/i32.c
index c48531b1..c0985031 100644
--- a/test/mppa/instr/i32.c
+++ b/test/mppa/instr/i32.c
@@ -65,6 +65,10 @@ BEGIN_TEST(int)
c += (a < b);
c += (a + b) / 2;
c += (int) int2float(a) + (int) int2float(b) + (int) int2float(42.3);
+ c += (a << 4); // addx16w
+ c += (a << 3); // addx8w
+ c += (a << 2); // addx4w
+ c += (a << 1); // addx2w
int j;
for (j = 0 ; j < 10 ; j++)