search for: avuori

Displaying 4 results from an estimated 4 matches for "avuori".

Did you mean: vuori
2008 Apr 14
0
[LLVMdev] llvm-as parse error
...warning, rule cannot be matched llvm[2]: Bisoning UpgradeParser.y /usr/local/src/llvm-2.2/tools/llvm-upgrade/UpgradeParser.y: conflicts: 8 shift/reduce, 7 reduce/reduce I'm going to install older versions (those "officially" supported) of the tools and try again. -- Arto Vuori avuori at cs.helsinki.fi
2008 Apr 14
2
[LLVMdev] llvm-as parse error
Hi: I have just started to use llvm and confronted with a problem: when I want to transform something very simple for name.ll to name.bc with llvm-as name.ll, some errors occured: error: parse error, expecting `GLOBAL' or `CONSTANT' while reading token: 'target' btw, the name.ll file is as follows: ; ModuleID = 'tst.bc' target datalayout =
2009 Mar 11
6
[LLVMdev] Wiki?
Hi all, I'm pretty new to LLVM and am slowly learning the code-base and architecture, mostly as a result of my efforts to implement a target backend. There are a number of resources (read: documents) available which deal with some parts of backend development (and LLVM development in general), but sadly they are not at all comprehensive. I'd like to propose that a wiki be made available
2009 Jun 17
8
[LLVMdev] Why are functions renamed for .cpp files with llvm-gcc?
Hello, I wonder why there is a difference in how llvm-gcc compiles .c and .cpp files. Example: ---bar.cpp---- int bar() { return 42; } -------------- $ llvm-gcc -emit-llvm -c bar.cpp Now running bar.o through llvm-dis gives: -------------------------------- define i32 @_Z3barv() nounwind { < clip > } -------------------------------- Above, function 'bar' has been renamed