From e58b811d6d9732d1d4e89129fc8ff1766e4bf00c Mon Sep 17 00:00:00 2001 From: whitequark Date: Tue, 21 Jul 2015 14:05:07 +0300 Subject: [PATCH] Fix tests broken by fixed FloorDiv. --- lit-test/compiler/inferencer/coerce.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lit-test/compiler/inferencer/coerce.py b/lit-test/compiler/inferencer/coerce.py index 3b0190c49..04fe42bbc 100644 --- a/lit-test/compiler/inferencer/coerce.py +++ b/lit-test/compiler/inferencer/coerce.py @@ -19,8 +19,8 @@ [1] * 2 # CHECK-L: [1:int(width='l)]:list(elt=int(width='l)) * 2:int(width='m):list(elt=int(width='l)) -1 / 2 -# CHECK-L: 1:int(width='n):int(width='o) / 2:int(width='p):int(width='o):int(width='o) +1 // 2 +# CHECK-L: 1:int(width='n):int(width='o) // 2:int(width='p):int(width='o):int(width='o) 1 + 1.0 # CHECK-L: 1:int(width='q):float + 1.0:float:float