From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received-SPF: Pass (sender SPF authorized) identity=mailfrom; client-ip=2a00:1450:400c:c0c::244; helo=mail-wr0-x244.google.com; envelope-from=sigmaepsilon92@gmail.com; receiver=edk2-devel@lists.01.org Received: from mail-wr0-x244.google.com (mail-wr0-x244.google.com [IPv6:2a00:1450:400c:c0c::244]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by ml01.01.org (Postfix) with ESMTPS id C9FCF222CB30D for ; Thu, 21 Dec 2017 23:18:54 -0800 (PST) Received: by mail-wr0-x244.google.com with SMTP id p69so18274818wrb.8 for ; Thu, 21 Dec 2017 23:23:44 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=from:to:cc:subject:date:message-id:in-reply-to:references; bh=ptBnk9w1u2iyMCYPJEIXRfBiX+iGzpS8lNBneXOAIoc=; b=jvY5bK72phu9B4Dog/rCHvgdk62gUYuA4B1IvqP1rFVI+Ixs5tZsOcDC9zdrWklPX9 M/JE0Uo2ZURPfJJtOOMuJff8jFAAuQZbkGm/zCBqUrAB/MJT/zLinS2uw47muXR53d9n J6xT+OJCkxsfYnS1U6KqZFdKRy/lGokxa5NJkJ7j7nmxnyiUURvXqJz1v9E/Y/AqfnCf m+9iQcU8FEVTqnpRg0yNClW+sxU/1YOPJiX3cp3tAkrWkl0jPi32KT1EWu6XTewvhnbX 3K3Kr+0PKHh4cJ2CODZqriDXBTFsKBYNFb05MehMdNG60RF2IR+y2Y7jLLT197jj/LdV ClHA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references; bh=ptBnk9w1u2iyMCYPJEIXRfBiX+iGzpS8lNBneXOAIoc=; b=nv6wZa4h0185cOSjYVq6qfa9Sq/C2ijrph7pAnYs105+29hhuPNh5xoFZtjaIwhhNY WJ9hl0q2bmkrA0ce37nA1mtLiXHcHsq61aa6SEvsOsiWsbv/6lJR5E/GwnWq1P71VcMD gEYBaFfofrbn36VTG3BRoxI5P2K70QQLIshaB76FHy0LhwvMhkxJ4B83lbQ+X92pQ+Jd 2hXVg0OFWflx8a/Sqi/AtlQGARl5PplJG1aNM840I25JmPsslFziIXWngVHGJRGPoWLc 88SJB39YvsDVyazskW9JrhaKL9F7MRoviuyEn1ZlYJtNXxoTLYqcBVq55wvZoyWH+1TS 6D4Q== X-Gm-Message-State: AKGB3mIY/nr5+Z0UWxaOYxIWJ8kmLrwhnocs9lLRWmU/3i282JUGcdiR z4Sp8gwzuyirXNeGuWDTDD1Fc3b5 X-Google-Smtp-Source: ACJfBosJ26XwB1U8Gh7ddb0+IO5J1RD8Ivq9tBEcfuJ9PqSZNKsZOjiNhqh7/frvg0Cpwf85JX2LCQ== X-Received: by 10.223.172.114 with SMTP id v105mr14012195wrc.229.1513927423005; Thu, 21 Dec 2017 23:23:43 -0800 (PST) Received: from localhost.localdomain ([2a02:908:5a9:8400:5ec8:3210:9b68:c91c]) by smtp.gmail.com with ESMTPSA id m68sm16070965wmi.28.2017.12.21.23.23.42 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Thu, 21 Dec 2017 23:23:42 -0800 (PST) From: M1cha To: edk2-devel@lists.01.org Cc: Ard Biesheuvel , Michael D Kinney , Liming Gao Date: Fri, 22 Dec 2017 08:23:36 +0100 Message-Id: <20171222072336.23504-4-sigmaepsilon92@gmail.com> X-Mailer: git-send-email 2.15.1 In-Reply-To: <20171222072336.23504-1-sigmaepsilon92@gmail.com> References: <20171222072336.23504-1-sigmaepsilon92@gmail.com> Subject: [PATCH 3/3] MdePkg: add NORETURN attribute to LongJump and InternalLongJump X-BeenThere: edk2-devel@lists.01.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: EDK II Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 22 Dec 2017 07:18:55 -0000 This fixes compiler warnings when using them in functions which should return a value but rely on LongJump to never return instead. Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Michael Zimmermann --- MdePkg/Include/Library/BaseLib.h | 1 + MdePkg/Library/BaseLib/BaseLibInternals.h | 1 + 2 files changed, 2 insertions(+) diff --git a/MdePkg/Include/Library/BaseLib.h b/MdePkg/Include/Library/BaseLib.h index 10976032adaa..e2eb46da4584 100644 --- a/MdePkg/Include/Library/BaseLib.h +++ b/MdePkg/Include/Library/BaseLib.h @@ -4929,6 +4929,7 @@ SetJump ( **/ VOID EFIAPI +NORETURN LongJump ( IN BASE_LIBRARY_JUMP_BUFFER *JumpBuffer, IN UINTN Value diff --git a/MdePkg/Library/BaseLib/BaseLibInternals.h b/MdePkg/Library/BaseLib/BaseLibInternals.h index 9dca97a0dcc9..3cd5fe34fc1b 100644 --- a/MdePkg/Library/BaseLib/BaseLibInternals.h +++ b/MdePkg/Library/BaseLib/BaseLibInternals.h @@ -442,6 +442,7 @@ InternalAssertJumpBuffer ( **/ VOID +NORETURN EFIAPI InternalLongJump ( IN BASE_LIBRARY_JUMP_BUFFER *JumpBuffer, -- 2.15.1