diff options
Diffstat (limited to 'stacker/lib/compiler')
-rw-r--r-- | stacker/lib/compiler/StackerCompiler.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stacker/lib/compiler/StackerCompiler.cpp b/stacker/lib/compiler/StackerCompiler.cpp index adf248a111d..daa763fa742 100644 --- a/stacker/lib/compiler/StackerCompiler.cpp +++ b/stacker/lib/compiler/StackerCompiler.cpp @@ -1092,7 +1092,7 @@ StackerCompiler::handle_word( int tkn ) // bb->getInstList().push_back( negop ); // So we'll multiply by -1 (ugh) BinaryOperator* multop = BinaryOperator::create( Instruction::Mul, op1, - ConstantInt::get( Type::Int64Ty, -1 ) ); + ConstantInt::get( Type::Int64Ty, -1ULL ) ); bb->getInstList().push_back( multop ); push_value( bb, multop ); break; |