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

Unified Diff: src/IceIntrinsics.h

Issue 656123003: Subzero: Class definition cleanup. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Changes for Karl 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/IceInstX8632.h ('k') | src/IceLiveness.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/IceIntrinsics.h
diff --git a/src/IceIntrinsics.h b/src/IceIntrinsics.h
index 429142b4c4d1f9f7554bf55b3de4acc2da2f41a2..f6311584c6efd71f23ca9e0eebf569aeb54f9a36 100644
--- a/src/IceIntrinsics.h
+++ b/src/IceIntrinsics.h
@@ -24,6 +24,9 @@ class InstCall;
static const size_t kMaxIntrinsicParameters = 6;
class Intrinsics {
+ Intrinsics(const Intrinsics &) = delete;
+ Intrinsics &operator=(const Intrinsics &) = delete;
+
public:
Intrinsics();
~Intrinsics();
@@ -158,9 +161,6 @@ private:
// TODO(jvoung): May want to switch to something like LLVM's StringMap.
typedef std::map<IceString, FullIntrinsicInfo> IntrinsicMap;
IntrinsicMap Map;
-
- Intrinsics(const Intrinsics &) = delete;
- Intrinsics &operator=(const Intrinsics &) = delete;
};
} // end of namespace Ice
« no previous file with comments | « src/IceInstX8632.h ('k') | src/IceLiveness.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698