From 99ae4eb88c2861c74a8a3ab6da53b505024cf2c6 Mon Sep 17 00:00:00 2001 From: John Hodge Date: Sun, 18 Feb 2018 18:53:55 +0800 Subject: Standalone MIRI - Implement BinOp comparisons and Terminator::If --- src/mir/mir.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/mir/mir.hpp b/src/mir/mir.hpp index d4b797ea..31eb9cd7 100644 --- a/src/mir/mir.hpp +++ b/src/mir/mir.hpp @@ -228,8 +228,8 @@ TAGGED_UNION(Terminator, Incomplete, (Panic, struct { BasicBlockId dst; }), // ? (If, struct { LValue cond; - BasicBlockId bb0; - BasicBlockId bb1; + BasicBlockId bb0; // true + BasicBlockId bb1; // false }), (Switch, struct { LValue val; -- cgit v1.2.3