Displaying 4 results from an estimated 4 matches for "raw_".
Did you mean:
raw
2018 Jun 07
2
[lld] ObjFile::createRegular is oblivious of PendingComdat
...f not,
I'll upload a reproducer for further investigation. (I omitted it to avoid
manually packaging a whole set of object files - I think
--reproduce=<repro> doesn't work on Windows yet).
For reference, here's the segfault:
#0 0x0000000000500999 llvm::sys::PrintStackTrace(llvm::raw_ostream&)
/ssd2/pirama/ll$
m-upstream/llvm/lib/Support/Unix/Signals.inc:488:11
#1 0x0000000000500b49 PrintStackTraceSignalHandler(void*)
/ssd2/pirama/llvm-upstream$
llvm/lib/Support/Unix/Signals.inc:552:1
#2 0x00000000004ff1d6 llvm::sys::RunSignalHandlers()
/ssd2/pirama/llvm-upstream/llvm$
lib/S...
2018 Jun 07
2
[lld] ObjFile::createRegular is oblivious of PendingComdat
...her investigation. (I omitted it to avoid
>> manually packaging a whole set of object files - I think
>> --reproduce=<repro> doesn't work on Windows yet).
>>
>> For reference, here's the segfault:
>> #0 0x0000000000500999 llvm::sys::PrintStackTrace(llvm::raw_ostream&)
>> /ssd2/pirama/ll$
>> m-upstream/llvm/lib/Support/Unix/Signals.inc:488:11
>>
>> #1 0x0000000000500b49 PrintStackTraceSignalHandler(void*)
>> /ssd2/pirama/llvm-upstream$
>> llvm/lib/Support/Unix/Signals.inc:552:1
>> #2 0x00000000004ff1d6 llvm::...
2013 Jul 05
0
[LLVMdev] Any suggestion for "Unknown instruction type encountered" error?
...llowing:
>
> #define DEBUG_TYPE"hello"
> #include"llvm/Pass.h"
> #include"llvm/IR/Module.h"
> #include"llvm/InstVisitor.h"
> #include"llvm/IR/Constants.h"
> #include"llvm/IR/IRBuilder.h"
> #include"llvm/Support/raw_ostream.h"
> namespace {
>
> struct Hello : public llvm::FunctionPass, llvm::InstVisitor<Hello> {
> private:
> llvm::BasicBlock *FailBB;
> public:
> static char ID;
> Hello() : llvm::FunctionPass(ID) {FailBB = 0;}
>
>
> virtual...
2013 Jul 05
2
[LLVMdev] Any suggestion for "Unknown instruction type encountered" error?
...The Hello.cpp pass is as the following:
#define DEBUG_TYPE "hello"
#include "llvm/Pass.h"
#include "llvm/IR/Module.h"
#include "llvm/InstVisitor.h"
#include "llvm/IR/Constants.h"
#include "llvm/IR/IRBuilder.h"
#include "llvm/Support/raw_ostream.h"
namespace {
struct Hello : public llvm::FunctionPass, llvm::InstVisitor<Hello> {
private:
llvm::BasicBlock *FailBB;
public:
static char ID;
Hello() : llvm::FunctionPass(ID) {FailBB = 0;}
virtual bool runOnFunction(llvm::Function &F) {
visit(F)...