Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(73)

Side by Side Diff: src/IceCfg.h

Issue 619983002: Subzero: Remove LLVM_DELETED_FUNCTION. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | src/IceCfgNode.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 //===- subzero/src/IceCfg.h - Control flow graph ----------------*- C++ -*-===// 1 //===- subzero/src/IceCfg.h - Control flow graph ----------------*- C++ -*-===//
2 // 2 //
3 // The Subzero Code Generator 3 // The Subzero Code Generator
4 // 4 //
5 // This file is distributed under the University of Illinois Open Source 5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details. 6 // License. See LICENSE.TXT for details.
7 // 7 //
8 //===----------------------------------------------------------------------===// 8 //===----------------------------------------------------------------------===//
9 // 9 //
10 // This file declares the Cfg class, which represents the control flow 10 // This file declares the Cfg class, which represents the control flow
(...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after
177 std::unique_ptr<VariablesMetadata> VMetadata; 177 std::unique_ptr<VariablesMetadata> VMetadata;
178 std::unique_ptr<Assembler> TargetAssembler; 178 std::unique_ptr<Assembler> TargetAssembler;
179 179
180 // CurrentNode is maintained during dumping/emitting just for 180 // CurrentNode is maintained during dumping/emitting just for
181 // validating Variable::DefNode. Normally, a traversal over 181 // validating Variable::DefNode. Normally, a traversal over
182 // CfgNodes maintains this, but before global operations like 182 // CfgNodes maintains this, but before global operations like
183 // register allocation, resetCurrentNode() should be called to avoid 183 // register allocation, resetCurrentNode() should be called to avoid
184 // spurious validation failures. 184 // spurious validation failures.
185 const CfgNode *CurrentNode; 185 const CfgNode *CurrentNode;
186 186
187 Cfg(const Cfg &) LLVM_DELETED_FUNCTION; 187 Cfg(const Cfg &) = delete;
188 Cfg &operator=(const Cfg &) LLVM_DELETED_FUNCTION; 188 Cfg &operator=(const Cfg &) = delete;
189 }; 189 };
190 190
191 } // end of namespace Ice 191 } // end of namespace Ice
192 192
193 #endif // SUBZERO_SRC_ICECFG_H 193 #endif // SUBZERO_SRC_ICECFG_H
OLDNEW
« no previous file with comments | « no previous file | src/IceCfgNode.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698