From 46151de6a0d08184c1bfc90bb39657ff1e21729e Mon Sep 17 00:00:00 2001 From: Jakob Stoklund Olesen Date: Sat, 8 Aug 2009 21:42:22 +0000 Subject: Add support for READCYCLECOUNTER in Blackfin back-end. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@78506 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/CodeGen/Blackfin/cycles.ll | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) (limited to 'test/CodeGen/Blackfin/cycles.ll') diff --git a/test/CodeGen/Blackfin/cycles.ll b/test/CodeGen/Blackfin/cycles.ll index 042cb57..745e259 100644 --- a/test/CodeGen/Blackfin/cycles.ll +++ b/test/CodeGen/Blackfin/cycles.ll @@ -1,11 +1,17 @@ -; RUN: llvm-as < %s | llc -march=bfin | grep cycles -; XFAIL: * -; ExpandIntegerResult #0: 0x181a60c: i64,ch = ReadCycleCounter 0x1104b08 -; Do not know how to expand the result of this operator! +; RUN: llvm-as < %s | llc -march=bfin | FileCheck %s declare i64 @llvm.readcyclecounter() -define i64 @foo() { +; CHECK: cycles +; CHECK: cycles2 +define i64 @cyc64() { %tmp.1 = call i64 @llvm.readcyclecounter() ret i64 %tmp.1 } + +; CHECK: cycles +define i32@cyc32() { + %tmp.1 = call i64 @llvm.readcyclecounter() + %s = trunc i64 %tmp.1 to i32 + ret i32 %s +} -- cgit v1.1