From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-il1-x129.google.com (mail-il1-x129.google.com [IPv6:2607:f8b0:4864:20::129]) by sourceware.org (Postfix) with ESMTPS id D20653858D39 for ; Tue, 18 Oct 2022 16:15:43 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org D20653858D39 Received: by mail-il1-x129.google.com with SMTP id r20so7692944ilt.11 for ; Tue, 18 Oct 2022 09:15:43 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=content-transfer-encoding:mime-version:message-id:date:subject:to :from:x-gm-message-state:from:to:cc:subject:date:message-id:reply-to; bh=3URvHrZgklYuQOQi+N85Cx7ASdgfHUjp+oXXpSOshFw=; b=xK3IunPEgNvGbENG7xIND/lFY6/avfFOtcTbh0zLULOJrjTIjiNx3ToOcRMGLFFJZ9 j8TZGf8lSoYm9fRPmCiFMzSteyfhHo0WifiDuVsGnjABQO6uzrFHM+Nm7CHxE7Ie3I3q B8F5+jY6TBCRy7mDoeoGx9rbCG64Wh190VoilNqgp++7ZCbBiEjNL6nAx2/9vBtCiWir nKvMcFU1VrFxpNV7SVbMEQ6KMXhUGkCQFeIMyAbFyklhhekQ4q+weYzQynEFclAb7tw9 BROaiJ/yyB4J5oDl+LfeZ4Io3vnAnb3sgOoUeJNdDh/YiuSpcnH4wMtdK3710IZ/IGKS Kitw== X-Gm-Message-State: ACrzQf2Y/CQdb+F9yxB6rg6fVWtY8Hvm+RyLQVbyWgyqygpbeRzWSuOE BiDlkKXAin2SzicdFqhR/Dx+/yUF+2asnA== X-Google-Smtp-Source: AMsMyM7by/BnwMCaXSOXQnv6+hj65+6W+JzAuSgOdo2rBV3dhQ0GezWQaTss/T1Hq5Yps2fHxmeaKw== X-Received: by 2002:a05:6e02:1a0c:b0:2fa:4e34:72b with SMTP id s12-20020a056e021a0c00b002fa4e34072bmr2046179ild.160.1666109743107; Tue, 18 Oct 2022 09:15:43 -0700 (PDT) Received: from localhost.localdomain (71-211-181-169.hlrn.qwest.net. [71.211.181.169]) by smtp.gmail.com with ESMTPSA id r11-20020a92d44b000000b002fc165318basm1123514ilm.30.2022.10.18.09.15.42 for (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Tue, 18 Oct 2022 09:15:42 -0700 (PDT) From: Tom Tromey To: gdb-patches@sourceware.org Subject: [PATCH 0/2] Use enum for call_dummy_location Date: Tue, 18 Oct 2022 10:15:31 -0600 Message-Id: <20221018161533.3089756-1-tromey@adacore.com> X-Mailer: git-send-email 2.34.3 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Status: No, score=-5.4 required=5.0 tests=BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, RCVD_IN_DNSWL_NONE, SPF_HELO_NONE, SPF_PASS, TXREP autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org X-BeenThere: gdb-patches@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gdb-patches mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Oct 2022 16:15:45 -0000 I wanted to change the gdbarch call_dummy_location to use an enum, instead of a couple of #defines. This required a bit of work in gdbarch.py, and this series is the result. Tom