From patchwork Tue Nov 15 18:08:13 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Martin Jambor X-Patchwork-Id: 695157 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 3tJFkY2hHPz9sQw for ; Wed, 16 Nov 2016 05:08:37 +1100 (AEDT) Authentication-Results: ozlabs.org; dkim=pass (1024-bit key; unprotected) header.d=gcc.gnu.org header.i=@gcc.gnu.org header.b="rOVFcK4M"; dkim-atps=neutral DomainKey-Signature: a=rsa-sha1; c=nofws; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender:date :from:to:subject:message-id:mime-version:content-type; q=dns; s= default; b=rxoq+dr8YGwr1PMCqpGoSLyEl4FqScjn6e2EoOnZTsEnJS/ndDJu/ iEBJoj1dbaUaKCQdWYKt4MdfDDaKzlqgFw33QwFVP/6GPuUAQm9m4T8solfq/i9Z Vu3VZDdWat4e7PXI0UhH8lusZpsmIU+WU3L7Xi1eogZH2nYe4iBdt4= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender:date :from:to:subject:message-id:mime-version:content-type; s= default; bh=jNbzh2v8TUF8p5hcj0z4qo4Bsao=; b=rOVFcK4Md278eHpYDZ/D jZZMXF30M5OWshjUCHcTpO7lxeNuE+yD8LKl1+JS06j2ke/3InXr8A85VgOKE+B9 SjEa1H+KSLgL5k3aW1u0Z7iBTbhVNJqOciyc2nNubFvzk25yuPZyFiluAfMeG2B1 FosA3oqKH+UzV+ygpvYgBZk= Received: (qmail 425 invoked by alias); 15 Nov 2016 18:08:27 -0000 Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Delivered-To: mailing list gcc-patches@gcc.gnu.org Received: (qmail 416 invoked by uid 89); 15 Nov 2016 18:08:27 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.9 required=5.0 tests=BAYES_00, SPF_PASS autolearn=ham version=3.3.2 spammy= X-HELO: mx2.suse.de Received: from mx2.suse.de (HELO mx2.suse.de) (195.135.220.15) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 15 Nov 2016 18:08:16 +0000 Received: from relay2.suse.de (charybdis-ext.suse.de [195.135.220.254]) by mx2.suse.de (Postfix) with ESMTP id 542F5AAC8 for ; Tue, 15 Nov 2016 18:08:14 +0000 (UTC) Date: Tue, 15 Nov 2016 19:08:13 +0100 From: Martin Jambor To: GCC Patches Subject: [hsa branch] Move hsa headers to plugin libgomp directory Message-ID: <20161115180813.72zolz7vprgpwknd@virgil.suse.cz> Mail-Followup-To: GCC Patches MIME-Version: 1.0 Content-Disposition: inline User-Agent: Mutt/1.6.2 (2016-07-01) X-IsSubscribed: yes Hi, this is one of the last two commits to the hsa branch I made while preparing the merge to trunk, it moves headers generated from HSA documentation to the plugin directory. Committed to the HSA branch, it is part of the posted patches merging it to trunk. Thanks, Martin 2016-11-12 Martin Jambor * hsa.h: Moved to plugin directory. * hsa_ext_finalize.h: Likewise. * plugin/plugin-hsa.c: Prefixed incldes of hsa headers with plugin/ --- libgomp/{ => plugin}/hsa.h | 0 libgomp/{ => plugin}/hsa_ext_finalize.h | 0 libgomp/plugin/plugin-hsa.c | 4 ++-- 3 files changed, 2 insertions(+), 2 deletions(-) rename libgomp/{ => plugin}/hsa.h (100%) rename libgomp/{ => plugin}/hsa_ext_finalize.h (100%) diff --git a/libgomp/hsa.h b/libgomp/plugin/hsa.h similarity index 100% rename from libgomp/hsa.h rename to libgomp/plugin/hsa.h diff --git a/libgomp/hsa_ext_finalize.h b/libgomp/plugin/hsa_ext_finalize.h similarity index 100% rename from libgomp/hsa_ext_finalize.h rename to libgomp/plugin/hsa_ext_finalize.h diff --git a/libgomp/plugin/plugin-hsa.c b/libgomp/plugin/plugin-hsa.c index ef7a202..ecf8302 100644 --- a/libgomp/plugin/plugin-hsa.c +++ b/libgomp/plugin/plugin-hsa.c @@ -34,8 +34,8 @@ #include #include #include -#include -#include +#include +#include #include #include "libgomp-plugin.h" #include "gomp-constants.h"