From 22dab0c7cc858db17300c7a857727227d9a20d02 Mon Sep 17 00:00:00 2001 From: whitequark Date: Thu, 10 Dec 2015 20:50:28 +0800 Subject: [PATCH] compiler: clarify confusing comment (NFC). --- artiq/compiler/transforms/llvm_ir_generator.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/artiq/compiler/transforms/llvm_ir_generator.py b/artiq/compiler/transforms/llvm_ir_generator.py index ac54ecf9f..5199724e7 100644 --- a/artiq/compiler/transforms/llvm_ir_generator.py +++ b/artiq/compiler/transforms/llvm_ir_generator.py @@ -451,8 +451,8 @@ class LLVMIRGenerator: # There is no 1:1 correspondence between ARTIQ and LLVM # basic blocks, because sometimes we expand a single ARTIQ # instruction so that the result spans several LLVM basic - # blocks. This only really matters for phis, which will - # use a different map. + # blocks. This only really matters for phis, which are thus + # using a different map (the following one). llblock_map[block] = self.llbuilder.basic_block # Fourth, add incoming values to phis.