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

Unified Diff: src/IceTargetLoweringX8664.cpp

Issue 1199043006: Subzero. Adds x86-64 to the list of supported Subzero targets. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Fixes unused variable warnings. Created 5 years, 6 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/IceTargetLoweringX8664.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/IceTargetLoweringX8664.cpp
diff --git a/src/IceTargetLoweringX8664.cpp b/src/IceTargetLoweringX8664.cpp
new file mode 100644
index 0000000000000000000000000000000000000000..21be080681047e67dbb998beddf666665fbedb6a
--- /dev/null
+++ b/src/IceTargetLoweringX8664.cpp
@@ -0,0 +1,31 @@
+//===- subzero/src/IceTargetLoweringX8664.cpp - lowering for x86-64 -------===//
+//
+// The Subzero Code Generator
+//
+// This file is distributed under the University of Illinois Open Source
+// License. See LICENSE.TXT for details.
+//
+//===----------------------------------------------------------------------===//
+//
+// Implements the Target Lowering for x86-64.
+//
+//===----------------------------------------------------------------------===//
+
+#include "IceDefs.h"
+#include "IceTargetLoweringX8664.h"
+
+namespace Ice {
+
+TargetX8664 *TargetX8664::create(Cfg *) {
+ llvm::report_fatal_error("Not yet implemented");
+}
+void TargetDataX8664::lowerGlobals(const VariableDeclarationList &,
+ const IceString &) {
+ llvm::report_fatal_error("Not yet implemented");
+}
+
+void TargetDataX8664::lowerConstants() {
+ llvm::report_fatal_error("Not yet implemented");
+}
+
+} // end of namespace Ice
« no previous file with comments | « src/IceTargetLoweringX8664.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698