search for: hellollvm

Displaying 12 results from an estimated 12 matches for "hellollvm".

2018 Jul 20
2
LLVM Social in China - Hangzhou: July 28, 2018
Hi all, The 3rd HelloLLVM social in China will happen on July 28, 2018. The location is at Hangzhou, Zhejiang. Everyone interested in LLVM related projects is invited to join. Event details is at https://mp.weixin.qq.com/s/Ruf3Dx3GBW37LnUzbfKfNA BoF style. Presentations are welcome too :-) Looking forward to meet you !...
2012 Nov 29
3
[LLVMdev] Different behavoir when writing to stdout with 2 raw_fd_ostreams with or w/o redirection
...;llvm/Support/raw_ostream.h" using namespace llvm; raw_fd_ostream S(STDOUT_FILENO, false); int main() { outs() << "Hello"; S << ", world!"; return 0; } And... surprisingly: $ ./outs Hello, world!$ ./outs &>result $ cat result HelloLLVM ERROR: IO failure on output stream. So, no error with screen output and error when redirected to file. Why so? Thanks, - D. -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20121129/7c148904/attachment.html&gt...
2018 Jul 20
2
[cfe-dev] LLVM Social in China - Hangzhou: July 28, 2018
...s.llvm.org] On Behalf Of Wei Wu >> (吴伟) via cfe-dev >> Sent: Friday, July 20, 2018 10:29 AM >> To: llvm-dev at lists.llvm.org; cfe-dev at lists.llvm.org >> Subject: [cfe-dev] LLVM Social in China - Hangzhou: July 28, 2018 >> >> Hi all, >> >> The 3rd HelloLLVM social in China will happen on July 28, 2018. >> >> The location is at Hangzhou, Zhejiang. >> >> Everyone interested in LLVM related projects is invited to join. >> >> Event details is at https://mp.weixin.qq.com/s/Ruf3Dx3GBW37LnUzbfKfNA >> >> BoF...
2018 May 29
2
LLVM Social - Beijing: May 19th, 2018
在 2018年05月29日 14:58, mayuyu.io 写道: > Any hint on the date of LLVM Social ShangHai? Wu Wei scheduled July 1th http://hellollvm.org/ > > Zhang > >> 在 2018年5月29日,14:22,Leslie Zhai via llvm-dev <llvm-dev at lists.llvm.org> 写道: >> >> Hi Chris, >> >> Thanks for your response! >> >> Wu Wei made this happen! and he is organizing LLVM social in Shanghai, Hang Zhou and Shen...
2018 May 29
0
LLVM Social - Beijing: May 19th, 2018
...broadcast ! <br/><br/>Thanks,<br/>yaoxiao 在 2018-05-29 15:02:30,"Leslie Zhai via llvm-dev" <llvm-dev at lists.llvm.org> 写道: > > >在 2018年05月29日 14:58, mayuyu.io 写道: >> Any hint on the date of LLVM Social ShangHai? >Wu Wei scheduled July 1th http://hellollvm.org/ > > >> >> Zhang >> >>> 在 2018年5月29日,14:22,Leslie Zhai via llvm-dev <llvm-dev at lists.llvm.org> 写道: >>> >>> Hi Chris, >>> >>> Thanks for your response! >>> >>> Wu Wei made this happen! and he is organi...
2012 Nov 29
0
[LLVMdev] Different behavoir when writing to stdout with 2 raw_fd_ostreams with or w/o redirection
...m S(STDOUT_FILENO, false); > > int main() > { > outs() << "Hello"; > S << ", world!"; > > return 0; > } > > And... surprisingly: > > $ ./outs > Hello, world!$ ./outs &>result > $ cat result > HelloLLVM ERROR: IO failure on output stream. > > So, no error with screen output and error when redirected to file. Why so? The difference in output is due to the difference in when the buffers happen to get destructed, because they flush their buffers in their destructors. The error comes from the...
2010 Aug 14
0
[LLVMdev] Questions about trip count
....addRequired<LoopInfo> (); AU.addRequired<ScalarEvolution> (); } }; } char Hello::ID = 0; static RegisterPass<Hello> Y("hello", "Hello World Pass (with getAnalysisUsage implemented)"); I get the following errors: **** Build of configuration Debug for project HelloLLVM **** make all llvm[0]: Compiling Hello.cpp for Release build (PIC) Hello.cpp: In member function ‘void<unnamed>::Hello::testLoopInfo::getLoopInfo(const llvm::Function&) const’: Hello.cpp:37: error: no matching function for call to ‘llvm::Pass::getAnalysis()’ /home/douglas/Programas/llvm-...
2010 Aug 12
2
[LLVMdev] Questions about trip count
On 08/12/2010 09:41 PM, Douglas do Couto Teixeira wrote: > Dear guys, > > I am having problems to obtain good information from the LoopInfo. > I am always getting a trip count of 0, even though I am clearly passing > a loop with a constant bound. I am using this pass below: Hi, I would propose to first check if the trip count is calculated correctly. I would do this with opt
2018 May 11
4
LLVM Social - Beijing: May 19th, 2018
Hi, The first (maybe) LLVM social in Beijing will happen on May 19th, 2018. Everyone interested in LLVM related projects is invited to join. Event details is at https://github.com/hellollvm/website/blob/master/README.md Presentations are welcome :-) Looking forward to meet you ! -- Best wishes, Wei Wu (吴伟)
2018 May 29
0
LLVM Social - Beijing: May 19th, 2018
Any hint on the date of LLVM Social ShangHai? Zhang > 在 2018年5月29日,14:22,Leslie Zhai via llvm-dev <llvm-dev at lists.llvm.org> 写道: > > Hi Chris, > > Thanks for your response! > > Wu Wei made this happen! and he is organizing LLVM social in Shanghai, Hang Zhou and Shen Zhen. I hope one day there is LLVM developer meeting in China :) > > >> 在 2018年05月29日
2018 May 29
2
LLVM Social - Beijing: May 19th, 2018
Hi Chris, Thanks for your response! Wu Wei made this happen! and he is organizing LLVM social in Shanghai, Hang Zhou and Shen Zhen. I hope one day there is LLVM developer meeting in China :) 在 2018年05月29日 14:13, Chris Lattner 写道: > This is really great, thank you for getting this off the ground! > > -Chris > > >> On May 28, 2018, at 9:42 PM, Leslie Zhai <lesliezhai at
2012 Nov 29
2
[LLVMdev] Different behavoir when writing to stdout with 2 raw_fd_ostreams with or w/o redirection
...> { >> outs() << "Hello"; >> S << ", world!"; >> >> return 0; >> } >> >> And... surprisingly: >> >> $ ./outs >> Hello, world!$ ./outs &>result >> $ cat result >> HelloLLVM ERROR: IO failure on output stream. >> >> So, no error with screen output and error when redirected to file. Why so? > > > The difference in output is due to the difference in when the buffers > happen to get destructed, because they flush their buffers in their > destruc...