aboutsummaryrefslogtreecommitdiffstats
path: root/test/CodeGen/PTX/mov.ll
diff options
context:
space:
mode:
authorJustin Holewinski <justin.holewinski@gmail.com>2011-06-16 17:50:00 +0000
committerJustin Holewinski <justin.holewinski@gmail.com>2011-06-16 17:50:00 +0000
commite0aef2de81c670f3e4229b979e81178860a458cb (patch)
treef6732316482108699b84e2a37da89367073a3d4f /test/CodeGen/PTX/mov.ll
parent1b91bcddd5a26c8bfad7cc1195aa092d42053c0e (diff)
downloadexternal_llvm-e0aef2de81c670f3e4229b979e81178860a458cb.zip
external_llvm-e0aef2de81c670f3e4229b979e81178860a458cb.tar.gz
external_llvm-e0aef2de81c670f3e4229b979e81178860a458cb.tar.bz2
PTX: Finish new calling convention implementation
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@133172 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/PTX/mov.ll')
-rw-r--r--test/CodeGen/PTX/mov.ll8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/CodeGen/PTX/mov.ll b/test/CodeGen/PTX/mov.ll
index 120572a..05ce4c0 100644
--- a/test/CodeGen/PTX/mov.ll
+++ b/test/CodeGen/PTX/mov.ll
@@ -19,13 +19,13 @@ define ptx_device i64 @t1_u64() {
}
define ptx_device float @t1_f32() {
-; CHECK: mov.f32 f0, 0F00000000;
+; CHECK: mov.f32 r0, 0F00000000;
; CHECK: ret;
ret float 0.0
}
define ptx_device double @t1_f64() {
-; CHECK: mov.f64 fd0, 0D0000000000000000;
+; CHECK: mov.f64 rd0, 0D0000000000000000;
; CHECK: ret;
ret double 0.0
}
@@ -49,13 +49,13 @@ define ptx_device i64 @t2_u64(i64 %x) {
}
define ptx_device float @t3_f32(float %x) {
-; CHECK: mov.f32 f0, f1;
+; CHECK: mov.u32 r0, r1;
; CHECK-NEXT: ret;
ret float %x
}
define ptx_device double @t3_f64(double %x) {
-; CHECK: mov.f64 fd0, fd1;
+; CHECK: mov.u64 rd0, rd1;
; CHECK-NEXT: ret;
ret double %x
}