From 1bc2392e29480c054a4bf63e2313fa74403845dd Mon Sep 17 00:00:00 2001 From: white-rabit <44086261+white-rabit@users.noreply.github.com> Date: Mon, 8 Jul 2019 11:17:07 +0800 Subject: [PATCH] =?UTF-8?q?Update=20#114=2090=20=E5=88=86=E9=92=9F?= =?UTF-8?q?=E5=AD=A6=E4=B9=A0=E7=8E=B0=E4=BB=A3=E5=BE=AE=E5=A4=84=E7=90=86?= =?UTF-8?q?=E5=99=A8.md?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...43\345\276\256\345\244\204\347\220\206\345\231\250.md" | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git "a/translation/#114 90 \345\210\206\351\222\237\345\255\246\344\271\240\347\216\260\344\273\243\345\276\256\345\244\204\347\220\206\345\231\250.md" "b/translation/#114 90 \345\210\206\351\222\237\345\255\246\344\271\240\347\216\260\344\273\243\345\276\256\345\244\204\347\220\206\345\231\250.md" index d3fff2d..0340c0e 100644 --- "a/translation/#114 90 \345\210\206\351\222\237\345\255\246\344\271\240\347\216\260\344\273\243\345\276\256\345\244\204\347\220\206\345\231\250.md" +++ "b/translation/#114 90 \345\210\206\351\222\237\345\255\246\344\271\240\347\216\260\344\273\243\345\276\256\345\244\204\347\220\206\345\231\250.md" @@ -375,10 +375,10 @@ Another key problem for pipelining is branches. Consider the following code sequ 将被编译为: - cmp a, 7 ; a > 7 ? - ble L1 - mov c, b ; b = c - br L2 + cmp a, 7 ; a > 7 ? + ble L1 + mov c, b ; b = c + br L2 L1: mov d, b ; b = d L2: ...