mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 11:13:28 +01:00
The fields for the stoppoint debug intrinsic have not changed, so update the
version number assertions. llvm-svn: 61257
This commit is contained in:
parent
8f79cd1f1b
commit
b7e13addf7
@ -60,7 +60,7 @@ Value *DbgInfoIntrinsic::StripCast(Value *C) {
|
||||
|
||||
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::getFileName() const {
|
||||
|
||||
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());
|
||||
|
Loading…
Reference in New Issue
Block a user