aboutsummaryrefslogtreecommitdiffstats
path: root/test/CodeGen/Blackfin/cycles.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/Blackfin/cycles.ll')
-rw-r--r--test/CodeGen/Blackfin/cycles.ll16
1 files changed, 11 insertions, 5 deletions
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
+}