aboutsummaryrefslogtreecommitdiffstats
path: root/test/CodeGen/Generic
diff options
context:
space:
mode:
authorNuno Lopes <nunoplopes@sapo.pt>2012-05-22 15:25:31 +0000
committerNuno Lopes <nunoplopes@sapo.pt>2012-05-22 15:25:31 +0000
commit23e75da7e0622528be3c3908b5fe3ae8857cdf65 (patch)
tree953e680c141920c0bb5b29a2edfcbcf084614ddd /test/CodeGen/Generic
parent76ff7418361c1c80ce9d018bce63511a70bd7390 (diff)
downloadexternal_llvm-23e75da7e0622528be3c3908b5fe3ae8857cdf65.zip
external_llvm-23e75da7e0622528be3c3908b5fe3ae8857cdf65.tar.gz
external_llvm-23e75da7e0622528be3c3908b5fe3ae8857cdf65.tar.bz2
revert my previous patches that introduced an additional parameter to the objectsize intrinsic.
After a lot of discussion, we realized it's not the best option for run-time bounds checking git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@157255 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/Generic')
-rw-r--r--test/CodeGen/Generic/crash.ll4
-rw-r--r--test/CodeGen/Generic/objectsize-upgrade.ll16
2 files changed, 2 insertions, 18 deletions
diff --git a/test/CodeGen/Generic/crash.ll b/test/CodeGen/Generic/crash.ll
index 805d0cc..d889389 100644
--- a/test/CodeGen/Generic/crash.ll
+++ b/test/CodeGen/Generic/crash.ll
@@ -23,7 +23,7 @@ bb32: ; preds = %bb6
%3 = load double* %1, align 4
%4 = load double* %0, align 4
call void @Parse_Vector(double* %0) nounwind
-%5 = call i32 @llvm.objectsize.i32(i8* undef, i1 false, i32 0)
+%5 = call i32 @llvm.objectsize.i32(i8* undef, i1 false)
%6 = icmp eq i32 %5, -1
br i1 %6, label %bb34, label %bb33
@@ -36,7 +36,7 @@ unreachable
}
declare void @Parse_Vector(double*)
-declare i32 @llvm.objectsize.i32(i8*, i1, i32)
+declare i32 @llvm.objectsize.i32(i8*, i1)
; PR9578
diff --git a/test/CodeGen/Generic/objectsize-upgrade.ll b/test/CodeGen/Generic/objectsize-upgrade.ll
deleted file mode 100644
index 8ed8047..0000000
--- a/test/CodeGen/Generic/objectsize-upgrade.ll
+++ /dev/null
@@ -1,16 +0,0 @@
-; RUN: opt < %s -verify -S | FileCheck %s
-; check automatic upgrade of objectsize. To be removed in LLVM 3.3.
-
-target datalayout = "e-p:32:32:32-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:32:64-f32:32:32-f64:32:64-v64:64:64-v128:128:128-a0:0:64-f80:128:128"
-
-define i32 @foo() nounwind {
-; CHECK: @foo
- %1 = alloca i8, align 4
- %2 = getelementptr inbounds i8* %1, i32 0
-; CHECK: llvm.objectsize.i32(i8* %2, i1 false, i32 0)
- %3 = call i32 @llvm.objectsize.i32(i8* %2, i1 0)
- ret i32 %3
-}
-
-; CHECK: @llvm.objectsize.i32(i8*, i1, i32)
-declare i32 @llvm.objectsize.i32(i8*, i1) nounwind readonly