search for: dumptodout

Displaying 9 results from an estimated 9 matches for "dumptodout".

2007 Sep 24
2
[LLVMdev] Compilation Failure
Hi all, Did someone forget to check-in a patch? I'm getting this error during compilation on PPC: /Volumes/SandBox/Clean/llvm-9999-01.roots/llvm-9999-01~obj/src/llvm/lib/Analysis/IPA/Andersens.cpp: In function 'void dumpToDOUT(llvm::SparseBitVector<128u>*)': /Volumes/SandBox/Clean/llvm-9999-01.roots/llvm-9999-01~obj/src/llvm/lib/Analysis/IPA/Andersens.cpp:1189: error: no matching function for call to 'dump(llvm::SparseBitVector<128u>&, llvm::OStream)' /Volumes/SandBox/Clean/llvm-9999-01.roots/...
2007 Sep 24
2
[LLVMdev] Compilation Failure
...t to check-in a patch? I'm getting this error during >> compilation on PPC: > > A recent checkout compiled fine for me (on x86). > >> /Volumes/SandBox/Clean/llvm-9999-01.roots/llvm-9999-01~obj/src/llvm/ >> lib/Analysis/IPA/Andersens.cpp: >> In function 'void dumpToDOUT(llvm::SparseBitVector<128u>*)': >> /Volumes/SandBox/Clean/llvm-9999-01.roots/llvm-9999-01~obj/src/llvm/ >> lib/Analysis/IPA/Andersens.cpp:1189: >> error: no matching function for call to >> 'dump(llvm::SparseBitVector<128u>&, llvm::OStream)' >&...
2007 Sep 24
0
[LLVMdev] Compilation Failure
...> > Did someone forget to check-in a patch? I'm getting this error during > compilation on PPC: A recent checkout compiled fine for me (on x86). > /Volumes/SandBox/Clean/llvm-9999-01.roots/llvm-9999-01~obj/src/llvm/ > lib/Analysis/IPA/Andersens.cpp: > In function 'void dumpToDOUT(llvm::SparseBitVector<128u>*)': > /Volumes/SandBox/Clean/llvm-9999-01.roots/llvm-9999-01~obj/src/llvm/ > lib/Analysis/IPA/Andersens.cpp:1189: > error: no matching function for call to > 'dump(llvm::SparseBitVector<128u>&, llvm::OStream)' > /Volumes/SandBo...
2007 Sep 24
4
[LLVMdev] Compilation Failure
On Sep 24, 2007, at 3:15 PM, Dale Johannesen wrote: > > On Sep 24, 2007, at 3:07 PM, Bill Wendling wrote: > >> A debug or release build? >> >> -bw > > Both, actually. Weird. I see a potential problem, though. The code is like this: void dumpToDOUT(SparseBitVector<> *bitmap) { dump(*bitmap, DOUT); } where dump expects an llvm::OStream& for the second argument. However, when NDEBUG is #defined, DOUT is "llvm::OStream(0)", so it can't be passed by reference. -bw
2007 Sep 24
0
[LLVMdev] Compilation Failure
...error >>> during >>> compilation on PPC: >> >> A recent checkout compiled fine for me (on x86). >> >>> /Volumes/SandBox/Clean/llvm-9999-01.roots/llvm-9999-01~obj/src/llvm/ >>> lib/Analysis/IPA/Andersens.cpp: >>> In function 'void dumpToDOUT(llvm::SparseBitVector<128u>*)': >>> /Volumes/SandBox/Clean/llvm-9999-01.roots/llvm-9999-01~obj/src/llvm/ >>> lib/Analysis/IPA/Andersens.cpp:1189: >>> error: no matching function for call to >>> 'dump(llvm::SparseBitVector<128u>&, llvm::OSt...
2007 Sep 25
0
[LLVMdev] Compilation Failure
...ohannesen wrote: > > > > > On Sep 24, 2007, at 3:07 PM, Bill Wendling wrote: > > > >> A debug or release build? > >> > >> -bw > > > > Both, actually. > > Weird. I see a potential problem, though. The code is like this: > > void dumpToDOUT(SparseBitVector<> *bitmap) { > dump(*bitmap, DOUT); > } > > where dump expects an llvm::OStream& for the second argument. > However, when NDEBUG is #defined, DOUT is "llvm::OStream(0)", so it > can't be passed by reference. What compiler are you compilin...
2007 Sep 25
2
[LLVMdev] Compilation Failure
.../25/07, Daniel Berlin <dberlin at dberlin.org> wrote: > On 9/24/07, Bill Wendling <isanbard at gmail.com> wrote: > > On Sep 24, 2007, at 3:15 PM, Dale Johannesen wrote: > > > > Weird. I see a potential problem, though. The code is like this: > > > > void dumpToDOUT(SparseBitVector<> *bitmap) { > > dump(*bitmap, DOUT); > > } > > > > where dump expects an llvm::OStream& for the second argument. > > However, when NDEBUG is #defined, DOUT is "llvm::OStream(0)", so it > > can't be passed by reference....
2007 Sep 25
0
[LLVMdev] Compilation Failure
On Monday 24 September 2007 17:23, Bill Wendling wrote: > Weird. I see a potential problem, though. The code is like this: > > void dumpToDOUT(SparseBitVector<> *bitmap) { > dump(*bitmap, DOUT); > } > > where dump expects an llvm::OStream& for the second argument. > However, when NDEBUG is #defined, DOUT is "llvm::OStream(0)", so it > can't be passed by reference. We ran into a similar problem...
2007 Sep 25
0
[LLVMdev] Compilation Failure
...lin at dberlin.org> wrote: > > On 9/24/07, Bill Wendling <isanbard at gmail.com> wrote: > > > On Sep 24, 2007, at 3:15 PM, Dale Johannesen wrote: > > > > > > Weird. I see a potential problem, though. The code is like this: > > > > > > void dumpToDOUT(SparseBitVector<> *bitmap) { > > > dump(*bitmap, DOUT); > > > } > > > > > > where dump expects an llvm::OStream& for the second argument. > > > However, when NDEBUG is #defined, DOUT is "llvm::OStream(0)", so it > > > can&...