diff options
author | Tom Stellard <thomas.stellard@amd.com> | 2012-12-11 21:25:42 +0000 |
---|---|---|
committer | Tom Stellard <thomas.stellard@amd.com> | 2012-12-11 21:25:42 +0000 |
commit | 75aadc2813824e18449e08a99690a6f886fadf13 (patch) | |
tree | a8c2877f80246b755c82c301e4f11c2f70d2810a /llvm/test/CodeGen/R600/fcmp-cnd.ll | |
parent | c56f1d34bc6cd67d64f7d2835c5ec0da137fe581 (diff) | |
download | bcm5719-llvm-75aadc2813824e18449e08a99690a6f886fadf13.tar.gz bcm5719-llvm-75aadc2813824e18449e08a99690a6f886fadf13.zip |
Add R600 backend
A new backend supporting AMD GPUs: Radeon HD2XXX - HD7XXX
llvm-svn: 169915
Diffstat (limited to 'llvm/test/CodeGen/R600/fcmp-cnd.ll')
-rw-r--r-- | llvm/test/CodeGen/R600/fcmp-cnd.ll | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/llvm/test/CodeGen/R600/fcmp-cnd.ll b/llvm/test/CodeGen/R600/fcmp-cnd.ll new file mode 100644 index 00000000000..a94cfb5cf2f --- /dev/null +++ b/llvm/test/CodeGen/R600/fcmp-cnd.ll @@ -0,0 +1,14 @@ +;RUN: llc < %s -march=r600 -mcpu=redwood | FileCheck %s + +;Not checking arguments 2 and 3 to CNDE, because they may change between +;registers and literal.x depending on what the optimizer does. +;CHECK: CNDE T{{[0-9]+\.[XYZW], T[0-9]+\.[XYZW]}} + +define void @test(i32 addrspace(1)* %out, float addrspace(1)* %in) { +entry: + %0 = load float addrspace(1)* %in + %cmp = fcmp oeq float %0, 0.000000e+00 + %value = select i1 %cmp, i32 2, i32 3 + store i32 %value, i32 addrspace(1)* %out + ret void +} |