summaryrefslogtreecommitdiff
path: root/test/CodeGen/Blackfin/ct32.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/Blackfin/ct32.ll')
-rw-r--r--test/CodeGen/Blackfin/ct32.ll6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/CodeGen/Blackfin/ct32.ll b/test/CodeGen/Blackfin/ct32.ll
index e9b66ebe5772b..363286d4b2f5e 100644
--- a/test/CodeGen/Blackfin/ct32.ll
+++ b/test/CodeGen/Blackfin/ct32.ll
@@ -6,15 +6,15 @@ declare i32 @llvm.ctpop.i32(i32)
define i32 @ctlztest(i32 %B) {
%b = call i32 @llvm.ctlz.i32( i32 %B )
- ret i32 %b;
+ ret i32 %b
}
define i32 @cttztest(i32 %B) {
%b = call i32 @llvm.cttz.i32( i32 %B )
- ret i32 %b;
+ ret i32 %b
}
define i32 @ctpoptest(i32 %B) {
%b = call i32 @llvm.ctpop.i32( i32 %B )
- ret i32 %b;
+ ret i32 %b
}