From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 32661 invoked by alias); 14 Feb 2007 15:32:23 -0000 Received: (qmail 32642 invoked by uid 22791); 14 Feb 2007 15:32:21 -0000 X-Spam-Check-By: sourceware.org Received: from brical.or.uni-bonn.de (HELO brical.or.uni-bonn.de) (131.220.141.99) by sourceware.org (qpsmtpd/0.31) with ESMTP; Wed, 14 Feb 2007 15:32:11 +0000 Received: from wse04.or.uni-bonn.de (bg-1.or.uni-bonn.de [131.220.141.100]) by brical.or.uni-bonn.de (Postfix) with ESMTP id B65753B7D4 for ; Wed, 14 Feb 2007 16:30:49 +0100 (CET) Received: from [131.220.143.130] (wse00.or.uni-bonn.de [131.220.143.130]) by wse04.or.uni-bonn.de (Postfix) with ESMTP id B36C6E965 for ; Wed, 14 Feb 2007 16:35:06 +0100 (CET) From: Christoph Bartoschek To: gdb@sourceware.org Subject: Array of short values Date: Wed, 14 Feb 2007 15:41:00 -0000 User-Agent: KMail/1.9.6 MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200702141632.08219.bartoschek@or.uni-bonn.de> X-IsSubscribed: yes Mailing-List: contact gdb-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-owner@sourceware.org X-SW-Source: 2007-02/txt/msg00121.txt.bz2 Hi, is it possible to easily set an array of short as a convenience variable? set $arr = (short *) {1, 2, 3} Currently I have to use: set $arr = (short *) {0x00020001, 0x00000003} Greetings, Christoph