From: Nick Lewycky Date: Thu, 28 May 2009 04:08:10 +0000 (+0000) Subject: Use Operands.data() instead of &Operands[0] where Operands is a potentially X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=e3f1fb1ee862a9a54c4a22f579460ac1e968b3d6;p=oota-llvm.git Use Operands.data() instead of &Operands[0] where Operands is a potentially empty SmallVector. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@72512 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Transforms/Scalar/SCCP.cpp b/lib/Transforms/Scalar/SCCP.cpp index d2a70ea9d00..d73519c04e3 100644 --- a/lib/Transforms/Scalar/SCCP.cpp +++ b/lib/Transforms/Scalar/SCCP.cpp @@ -1196,7 +1196,7 @@ CallOverdefined: // If we can constant fold this, mark the result of the call as a // constant. - if (Constant *C = ConstantFoldCall(F, &Operands[0], Operands.size())) { + if (Constant *C = ConstantFoldCall(F, Operands.data(), Operands.size())) { markConstant(I, C); return; } diff --git a/test/Transforms/SCCP/2009-05-27-VectorOperandZero.ll b/test/Transforms/SCCP/2009-05-27-VectorOperandZero.ll new file mode 100644 index 00000000000..480aca0d1ac --- /dev/null +++ b/test/Transforms/SCCP/2009-05-27-VectorOperandZero.ll @@ -0,0 +1,10 @@ +; RUN: llvm-as < %s | opt -sccp -disable-output +; PR4277 + +define i32 @main() nounwind { +entry: + %0 = tail call signext i8 (...)* @sin() nounwind + ret i32 0 +} + +declare signext i8 @sin(...)