qbe

Internal scc patchset buffer for QBE
Log | Files | Refs | README | LICENSE

commit f0e8e335f9697a5636adbb83e2e32f95788c0694
parent e700d690043e37a7c8243e01da931514c35855c6
Author: Quentin Carbonneaux <quentin.carbonneaux@yale.edu>
Date:   Thu,  3 Mar 2016 13:49:06 -0500

fix typo in abi2.ssa

Diffstat:
Mlisc/test/abi2.ssa | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lisc/test/abi2.ssa b/lisc/test/abi2.ssa @@ -13,6 +13,6 @@ function s $sum(:fps %p) { # typedef struct { float f1; char b; float f2; } fps; # extern float sum(fps); # int main() { fps x = { 1.23, -1, 2.34 }; return !(sum(x) == 1.23f+2.34f); } -# /* Note the f above are important +# /* Note the f suffixes above are important # * otherwise C does double operations. */ # <<<