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

Unified Diff: src/IceTargetLoweringX8664.cpp

Issue 1257283004: Iasm and obj lowering for advanced switch lowering. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Rebase Created 5 years, 5 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') | src/IceTargetLoweringX86Base.h » ('j') | 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
index f2be0c15948f5f8858acc27cebfb8b2970bca862..b9bbabaf327c4aec6c384d26fab2781f5ed55130 100644
--- a/src/IceTargetLoweringX8664.cpp
+++ b/src/IceTargetLoweringX8664.cpp
@@ -17,6 +17,13 @@
namespace Ice {
+void TargetX8664::emitJumpTable(const Cfg *Func,
+ const InstJumpTable *JumpTable) const {
+ (void)Func;
+ (void)JumpTable;
+ llvm::report_fatal_error("Not yet implemented");
+}
+
TargetX8664 *TargetX8664::create(Cfg *) {
llvm::report_fatal_error("Not yet implemented");
}
@@ -29,4 +36,8 @@ void TargetDataX8664::lowerConstants() {
llvm::report_fatal_error("Not yet implemented");
}
+void TargetDataX8664::lowerJumpTables() {
+ llvm::report_fatal_error("Not yet implemented");
+}
+
} // end of namespace Ice
« no previous file with comments | « src/IceTargetLoweringX8664.h ('k') | src/IceTargetLoweringX86Base.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698