search for: otest1

Displaying 2 results from an estimated 2 matches for "otest1".

Did you mean: test1
2006 Jun 21
26
Implementing a boolean "switch" in a Class
I need a single boolean which would be "globally" accessible to all instances of a class. Seems like the boolean should be in the class prototype, but I was troubled by the difficulty of setting the prototype boolean to true. Maybe I''m missing something? var MyObject = Class.create(); MyObject.prototype = { bSwitch: false, ... other methods and properties } var oMyOb1
2012 Nov 24
1
[LLVMdev] profiling basic block frequency in LLVM3.1
...ere I'm doing wrong? ---------------------------------------------------------------------------------------------------------------------------------------------- Following commands are used for this profiling.   rdpatel55 at ubuntu:~/RDPATEL/LLVM3.1/RDSampleCode/test$ clang -O0 -emit-llvm -c -otest1.o test1.c rdpatel55 at ubuntu:~/RDPATEL/LLVM3.1/RDSampleCode/test$ opt -disable-opt -insert-edge-profiling -o test1.o.inst test1.o rdpatel55 at ubuntu:~/RDPATEL/LLVM3.1/RDSampleCode/test$ lli -O0 -fake-argv0 'test1.o' -load /home/rdpatel55/RDPATEL/LLVM3.1/LLVM_INSTALL_ROOT/lib/libprofile_rt...