blob: 24cf1be67419c49eda3e6fd044d26d881a8ac863 [file] [log] [blame]
/**********************************************************************
* Copyright (c) 2007 IBM Corporation.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.ptp.pldt.mpi.analysis.analysis;
import org.eclipse.cdt.core.dom.ast.IASTNode;
import org.eclipse.cdt.core.dom.ast.IASTStatement;
import org.eclipse.ptp.pldt.mpi.analysis.cdt.graphs.impl.Block;
public class BarrierCFGBlock extends Block {
protected BarrierExpression BE_;
public BarrierCFGBlock(IASTNode content, IASTStatement parent, int type){
super(content, parent, type);
BE_ = null;
}
public BarrierExpression getBE(){return BE_;}
public void setBE(BarrierExpression be) {BE_ = be;}
}