search for: component_1

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

Did you mean: component_0
2007 Jul 14
1
accessing list components with a variable
Let's say I have a list called the_list consisting of three components: the_list$component_1 the_list$component_2 the_list$component_3 Now, I want to access it using a variable called comp. comp <- "component_1" I'm looking for some function that let's me do this: unknown_function(the_list, comp) Which should do the same thing as: the_list$component_1 Any ideas? I...
2017 Oct 14
2
What's LLVM{target}CodeGen vs {target}CodeGen?
...DataLayout). CMakeLists.txt is also pretty small: set(LLVM_TARGET_DEFINITIONS TMS9900.td) add_llvm_library(TMS9900CodeGen TMS9900TargetMachine.cpp ) LLVMBuild.txt is as minimal as I could guess at: [common] subdirectories = [component_0] type = TargetGroup name = TMS9900 parent = Target [component_1] type = Library name = TMS9900CodeGen parent = TMS9900 required_libraries = Analysis AsmPrinter CodeGen Core MC Scalar SelectionDAG Support Target TransformUtils add_to_library_groups = TMS9900 And finally, TMS9900.td contains: include "llvm/Target/Target.td" def TMS9900 : Target { } I...