diff options
| author | Benjamin Kramer <benny.kra@googlemail.com> | 2013-07-12 21:54:43 +0000 |
|---|---|---|
| committer | Benjamin Kramer <benny.kra@googlemail.com> | 2013-07-12 21:54:43 +0000 |
| commit | e07b7a9f0251b7c64a7240503d970ddc26b56c45 (patch) | |
| tree | 9e76721c72670946d88454feab5fa7e90f9d6339 | |
| parent | 638264ea2a3d084096b10f323a2c4262cce011ac (diff) | |
| download | bcm5719-llvm-e07b7a9f0251b7c64a7240503d970ddc26b56c45.tar.gz bcm5719-llvm-e07b7a9f0251b7c64a7240503d970ddc26b56c45.zip | |
R600: Reapply testcase from r186178, the big endian issue should be fixed by r186196.
llvm-svn: 186209
| -rw-r--r-- | llvm/test/CodeGen/R600/fconst64.ll | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/llvm/test/CodeGen/R600/fconst64.ll b/llvm/test/CodeGen/R600/fconst64.ll new file mode 100644 index 00000000000..2402a9c786e --- /dev/null +++ b/llvm/test/CodeGen/R600/fconst64.ll @@ -0,0 +1,12 @@ +; RUN: llc < %s -march=r600 -mcpu=tahiti | FileCheck %s + +; CHECK: @fconst_f64 +; CHECK: V_MOV_B32_e32 {{VGPR[0-9]+}}, 0.000000e+00 +; CHECK-NEXT: V_MOV_B32_e32 {{VGPR[0-9]+}}, 2.312500e+00 + +define void @fconst_f64(double addrspace(1)* %out, double addrspace(1)* %in) { + %r1 = load double addrspace(1)* %in + %r2 = fadd double %r1, 5.000000e+00 + store double %r2, double addrspace(1)* %out + ret void +} |

