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/PowerPC/fp-to-int-ext.ll | |
parent | f03b5bed27d0d2eafd68562ce14f8b5e3f1f0801 (diff) |
Diffstat (limited to 'test/CodeGen/PowerPC/fp-to-int-ext.ll')
-rw-r--r-- | test/CodeGen/PowerPC/fp-to-int-ext.ll | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/CodeGen/PowerPC/fp-to-int-ext.ll b/test/CodeGen/PowerPC/fp-to-int-ext.ll index bfacd89ca1a29..393fe04d41c68 100644 --- a/test/CodeGen/PowerPC/fp-to-int-ext.ll +++ b/test/CodeGen/PowerPC/fp-to-int-ext.ll @@ -5,7 +5,7 @@ target triple = "powerpc64-unknown-linux-gnu" ; Function Attrs: nounwind define double @foo1(i32* %x) #0 { entry: - %0 = load i32* %x, align 4 + %0 = load i32, i32* %x, align 4 %conv = sext i32 %0 to i64 %conv1 = sitofp i64 %conv to double ret double %conv1 @@ -18,7 +18,7 @@ entry: define double @foo2(i32* %x) #0 { entry: - %0 = load i32* %x, align 4 + %0 = load i32, i32* %x, align 4 %conv = zext i32 %0 to i64 %conv1 = sitofp i64 %conv to double ret double %conv1 @@ -31,7 +31,7 @@ entry: define double @foo3(i32* %x) #0 { entry: - %0 = load i32* %x, align 4 + %0 = load i32, i32* %x, align 4 %1 = add i32 %0, 8 %conv = zext i32 %1 to i64 %conv1 = sitofp i64 %conv to double @@ -49,7 +49,7 @@ entry: define double @foo4(i32* %x) #0 { entry: - %0 = load i32* %x, align 4 + %0 = load i32, i32* %x, align 4 %1 = add i32 %0, 8 %conv = sext i32 %1 to i64 %conv1 = sitofp i64 %conv to double |