$NetBSD: patch-ae,v 1.2 2010/02/13 16:33:06 tnn2 Exp $

--- upcl/c/expression.cpp.orig	2010-02-13 15:20:59.000000000 +0000
+++ upcl/c/expression.cpp
@@ -40,6 +40,12 @@ expression::fromDecoderOperand(decoder_o
 }
 
 expression *
+expression::fromInteger(unsigned long long int x, unsigned bits)
+{
+	return fromInteger((uint64_t)x, bits);
+}
+
+expression *
 expression::fromInteger(uint64_t x, unsigned bits)
 {
 	assert(bits > 0);
