From ea452bd33c0d7a90b332b882dc0dbf3b76eb338e Mon Sep 17 00:00:00 2001 From: Siu Kwan Lam Date: Mon, 30 Sep 2013 17:18:30 -0500 Subject: [PATCH] Fix test --- llvm/tests/test_struct_args.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/tests/test_struct_args.py b/llvm/tests/test_struct_args.py index 8d849dd..cd3e3f9 100644 --- a/llvm/tests/test_struct_args.py +++ b/llvm/tests/test_struct_args.py @@ -613,7 +613,7 @@ class TestStructMicrosoftABI(unittest.TestCase, FloatTestMixin): out_ptr = builder.alloca(struct_type) - arg = builder.load(func.args[0]) + arg = func.args[0] e1, e2 = [builder.extract_value(arg, i) for i in range(2)] se1 = builder.fmul(e1, e2) se2 = builder.fdiv(e1, e2)