Further shift operator regression fixes

This commit is contained in:
William S Fulton 2014-04-08 19:15:47 +01:00
commit 7bec7c1b60
2 changed files with 11 additions and 8 deletions

View file

@ -48,4 +48,6 @@ public:
// Test shifts are still working
%inline %{
int shift_init1 = 4 << 2 >> 1;
int shift_init2 = 4 >> 2 << 1 << 1 >> 2;
%}