[llvm-commits] [llvm] r61257 - /llvm/trunk/lib/VMCore/IntrinsicInst.cpp

Bill Wendling isanbard at gmail.com
Fri Dec 19 12:53:09 PST 2008


John,

This is causing an XPASS on Darwin (Leopard). Could you investigate?

Running /Volumes/Sandbox/Buildbot/llvm/full-llvm/build/llvm.src/test/DebugInfo/dg.exp
...
XPASS: /Volumes/Sandbox/Buildbot/llvm/full-llvm/build/llvm.src/test/DebugInfo/printdbginfo.ll


-bw

On Fri, Dec 19, 2008 at 11:56 AM, John Criswell <criswell at uiuc.edu> wrote:
> Author: criswell
> Date: Fri Dec 19 13:56:36 2008
> New Revision: 61257
>
> URL: http://llvm.org/viewvc/llvm-project?rev=61257&view=rev
> Log:
> The fields for the stoppoint debug intrinsic have not changed, so update the
> version number assertions.
>
> Modified:
>    llvm/trunk/lib/VMCore/IntrinsicInst.cpp
>
> Modified: llvm/trunk/lib/VMCore/IntrinsicInst.cpp
> URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/VMCore/IntrinsicInst.cpp?rev=61257&r1=61256&r2=61257&view=diff
>
> ==============================================================================
> --- llvm/trunk/lib/VMCore/IntrinsicInst.cpp (original)
> +++ llvm/trunk/lib/VMCore/IntrinsicInst.cpp Fri Dec 19 13:56:36 2008
> @@ -60,7 +60,7 @@
>
>  Value *DbgStopPointInst::getFileName() const {
>   // Once the operand indices are verified, update this assert
> -  assert(LLVMDebugVersion == (6 << 16) && "Verify operand indices");
> +  assert(LLVMDebugVersion == (7 << 16) && "Verify operand indices");
>   GlobalVariable *GV = cast<GlobalVariable>(getContext());
>   if (!GV->hasInitializer()) return NULL;
>   ConstantStruct *CS = cast<ConstantStruct>(GV->getInitializer());
> @@ -69,7 +69,7 @@
>
>  Value *DbgStopPointInst::getDirectory() const {
>   // Once the operand indices are verified, update this assert
> -  assert(LLVMDebugVersion == (6 << 16) && "Verify operand indices");
> +  assert(LLVMDebugVersion == (7 << 16) && "Verify operand indices");
>   GlobalVariable *GV = cast<GlobalVariable>(getContext());
>   if (!GV->hasInitializer()) return NULL;
>   ConstantStruct *CS = cast<ConstantStruct>(GV->getInitializer());
>
>
> _______________________________________________
> llvm-commits mailing list
> llvm-commits at cs.uiuc.edu
> http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits
>



More information about the llvm-commits mailing list