search for: 203468

Displaying 2 results from an estimated 2 matches for "203468".

Did you mean: 2.3468
2014 Mar 10
2
[LLVMdev] GlobalValues appear in their own use lists?
...r() ret i8 %call0 } declare i8 @bar() #1 – @bar() gets marked as its own user in top-of-tree LLVM. I patched the Verifier to check it (but didn’t commit the patch): – Index: lib/IR/Verifier.cpp =================================================================== --- lib/IR/Verifier.cpp (revision 203468) +++ lib/IR/Verifier.cpp (working copy) @@ -360,6 +360,11 @@ "Global is external, but doesn't have external or weak linkage!", &GV); + for (Value::const_use_iterator UI = GV.use_begin(), UE = GV.use_end(); + UI != UE; ++UI) { + Assert1(*UI != &amp...
2014 Mar 11
3
[LLVMdev] GlobalValues appear in their own use lists?
...>> @bar() gets marked as its own user in top-of-tree LLVM. I patched the Verifier to check it (but didn’t commit the patch): >> – >> Index: lib/IR/Verifier.cpp >> =================================================================== >> --- lib/IR/Verifier.cpp (revision 203468) >> +++ lib/IR/Verifier.cpp (working copy) >> @@ -360,6 +360,11 @@ >> "Global is external, but doesn't have external or weak linkage!", >> &GV); >> >> + for (Value::const_use_iterator UI = GV.use_begin(), UE = GV.use_end...