diff options
Diffstat (limited to 'llvm/test/CodeGen/X86/fastcc-byval.ll')
-rw-r--r-- | llvm/test/CodeGen/X86/fastcc-byval.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/test/CodeGen/X86/fastcc-byval.ll b/llvm/test/CodeGen/X86/fastcc-byval.ll index 32ba6ed8799..1706de46111 100644 --- a/llvm/test/CodeGen/X86/fastcc-byval.ll +++ b/llvm/test/CodeGen/X86/fastcc-byval.ll @@ -17,7 +17,7 @@ define fastcc i32 @bar() nounwind { %a = getelementptr %struct.MVT, %struct.MVT* %V, i32 0, i32 0 store i32 1, i32* %a call fastcc void @foo(%struct.MVT* byval %V) nounwind - %t = load i32* %a + %t = load i32, i32* %a ret i32 %t } |