search for: aaabc

Displaying 6 results from an estimated 6 matches for "aaabc".

Did you mean: aaab
2010 Nov 02
1
[LLVMdev] Forcing the Interpreter segfaults
...s code interprets the function llvm::initializeCore(); llvm::ExecutionEngine * EI = llvm::EngineBuilder(&M).setEngineKind(llvm::EngineKind::Interpreter).create(); EI->runStaticConstructorsDestructors(false); std::vector<llvm::GenericValue> args; llvm::GenericValue arg1((void*)"aaabc"); args.push_back(arg1); llvm::APInt res = EI->runFunction(func, args).IntVal; llvm::outs() << res << "\n"; The first block of code works very well and write the expected result. The second block segfaults on the EI->runFunction(func, args) call. I can't find...
2010 Nov 02
2
[LLVMdev] Forcing the Interpreter segfaults
...alizeCore(); >> llvm::ExecutionEngine * EI  = >> llvm::EngineBuilder(&M).setEngineKind(llvm::EngineKind::Interpreter).create(); >> EI->runStaticConstructorsDestructors(false); >> std::vector<llvm::GenericValue> args; >> llvm::GenericValue arg1((void*)"aaabc"); >> args.push_back(arg1); >> llvm::APInt res = EI->runFunction(func, args).IntVal; >> llvm::outs() << res << "\n"; >> The first block of code works very well and write the expected result. >> The second block segfaults on the EI->runF...
2010 Nov 02
0
[LLVMdev] Forcing the Interpreter segfaults
...m::ExecutionEngine * EI = > >> > llvm::EngineBuilder(&M).setEngineKind(llvm::EngineKind::Interpreter).create(); > >> EI->runStaticConstructorsDestructors(false); > >> std::vector<llvm::GenericValue> args; > >> llvm::GenericValue arg1((void*)"aaabc"); > >> args.push_back(arg1); > >> llvm::APInt res = EI->runFunction(func, args).IntVal; > >> llvm::outs() << res << "\n"; > >> The first block of code works very well and write the expected result. > >> The second block seg...
2010 Dec 09
15
Rails 3 Active Record query returns "undefined method `loaded?' for #<Array:0x126a4c>"
...returns: #<PracticeMember id: 9, practice_id: 6, name_last: "Aaaaz", name_first: "Aaaba", name_middle: "Aaabb", created_at: "2010-12-09 15:40:46", updated_at: "2010-12-09 15:40:46">, #<PracticeMember id: 10, practice_id: 6, name_last: "Aaabc", name_first: "Aaabd", name_middle: "Aaabe", created_at: "2010-12-09 15:40:46", updated_at: "2010-12-09 15:40:46">] So the association on practice_id is correct on both practice members. It is unclear to me why this should be failing... am I missing...
2017 Aug 01
7
[PATCH 0/2] Add lightweight bindings for PCRE.
We'd like to use PCRE instead of the awful Str module. However I don't necessarily want to pull in the extra dependency of ocaml-pcre, and in any case ocaml-pcre is rather difficult to use. This introduces very simplified and lightweight bindings for PCRE. They work rather like Str in that there is some global state (actually thread-local in this implementation) between the matching and
2017 Aug 01
6
[PATCH v2 0/3] common: Add a lightweight OCaml binding for PCRE.
v2: - Change the OCaml code in the daemon to use PCRE instead of Str. - Call pcre_compile2 so we can capture the error code on failure. - Extend the test suite. - Some other cleanups, but very minor. Rich.