diff options
Diffstat (limited to 'llvm/test/CodeGen/X86/byval.ll')
-rw-r--r-- | llvm/test/CodeGen/X86/byval.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/test/CodeGen/X86/byval.ll b/llvm/test/CodeGen/X86/byval.ll index 7d85dbd9f97..f29511a54c4 100644 --- a/llvm/test/CodeGen/X86/byval.ll +++ b/llvm/test/CodeGen/X86/byval.ll @@ -12,6 +12,6 @@ define i64 @f(%struct.s* byval %a) { entry: %tmp2 = getelementptr %struct.s, %struct.s* %a, i32 0, i32 0 - %tmp3 = load i64* %tmp2, align 8 + %tmp3 = load i64, i64* %tmp2, align 8 ret i64 %tmp3 } |