| 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
|
|
|