diff options
author | Dimitry Andric <dim@FreeBSD.org> | 2015-05-27 18:44:32 +0000 |
---|---|---|
committer | Dimitry Andric <dim@FreeBSD.org> | 2015-05-27 18:44:32 +0000 |
commit | 5a5ac124e1efaf208671f01c46edb15f29ed2a0b (patch) | |
tree | a6140557876943cdd800ee997c9317283394b22c /test/CodeGen/SPARC/2011-01-11-CC.ll | |
parent | f03b5bed27d0d2eafd68562ce14f8b5e3f1f0801 (diff) |
Vendor import of llvm trunk r238337:vendor/llvm/llvm-trunk-r238337
Notes
Notes:
svn path=/vendor/llvm/dist/; revision=283625
svn path=/vendor/llvm/llvm-trunk-r238337/; revision=283626; tag=vendor/llvm/llvm-trunk-r238337
Diffstat (limited to 'test/CodeGen/SPARC/2011-01-11-CC.ll')
-rwxr-xr-x | test/CodeGen/SPARC/2011-01-11-CC.ll | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/CodeGen/SPARC/2011-01-11-CC.ll b/test/CodeGen/SPARC/2011-01-11-CC.ll index 50f3a65ff9a9..6ea78dd7e169 100755 --- a/test/CodeGen/SPARC/2011-01-11-CC.ll +++ b/test/CodeGen/SPARC/2011-01-11-CC.ll @@ -177,13 +177,13 @@ define void @test_adde_sube(i8* %a, i8* %b, i8* %sum, i8* %diff) { entry: %0 = bitcast i8* %a to i128* %1 = bitcast i8* %b to i128* - %2 = load i128* %0 - %3 = load i128* %1 + %2 = load i128, i128* %0 + %3 = load i128, i128* %1 %4 = add i128 %2, %3 %5 = bitcast i8* %sum to i128* store i128 %4, i128* %5 tail call void asm sideeffect "", "=*m,*m"(i128 *%0, i128* %5) nounwind - %6 = load i128* %0 + %6 = load i128, i128* %0 %7 = sub i128 %2, %6 %8 = bitcast i8* %diff to i128* store i128 %7, i128* %8 |