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

Unified Diff: src/IceTargetLowering.cpp

Issue 1876413002: Subzero. WASM. Additional progress. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Merging with master Created 4 years, 8 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
Index: src/IceTargetLowering.cpp
diff --git a/src/IceTargetLowering.cpp b/src/IceTargetLowering.cpp
index 29fbc7bdbdf02da2edd62e41f4164cb9d6eec809..cc08773ffb43e1fc98a9da13430a8480e4d8cbec 100644
--- a/src/IceTargetLowering.cpp
+++ b/src/IceTargetLowering.cpp
@@ -446,6 +446,9 @@ void TargetLowering::lower() {
case Inst::Unreachable:
lowerUnreachable(llvm::cast<InstUnreachable>(Instr));
break;
+ case Inst::Breakpoint:
Jim Stichnoth 2016/04/14 20:03:44 sort
Eric Holk 2016/04/15 15:24:26 Done.
+ lowerBreakpoint(llvm::cast<InstBreakpoint>(Instr));
+ break;
default:
lowerOther(Instr);
break;

Powered by Google App Engine
This is Rietveld 408576698