search for: getsubarch

Displaying 5 results from an estimated 5 matches for "getsubarch".

2016 Jan 03
2
Diff to add ARMv6L to Target parser
...ift’s Driver.cpp the following: static llvm::Triple computeTargetTriple(StringRef DefaultTargetTriple) { llvm::Triple triple = llvm::Triple(DefaultTargetTriple); // Canonicalization of all armv6 sub architectures to armv6 if (triple.getArch() == llvm::Triple::ArchType::arm) { if (triple.getSubArch() == llvm::Triple::SubArchType::ARMSubArch_v6 || triple.getSubArch() == llvm::Triple::SubArchType::ARMSubArch_v6m || triple.getSubArch() == llvm::Triple::SubArchType::ARMSubArch_v6k || triple.getSubArch() == llvm::Triple::SubArchType::ARMSubArch_v6t2) { triple.setArch...
2014 Sep 05
2
[LLVMdev] HELP! Recent failure on llvm buildbot
...his error: /Users/buildslave/as-bldslv9/lld-x86_64-darwin13/llvm.src/lib/Target/ARM/MCTargetDesc/ARMMCTargetDesc.cpp:92:11: error: enumeration values 'KalimbaSubArch_v3', 'KalimbaSubArch_v4', and 'KalimbaSubArch_v5' not handled in switch [-Werror,-Wswitch] switch (triple.getSubArch()) { " from here http://lab.llvm.org:8011/builders/lld-x86_64-darwin13/builds/2571 Sorry to seem lame, but I could have fixed it myself if I'd known how to navigate to that line describing the failed invocation. thanks Matt Frédéric Riss wrote: > Hi, > > The build log show...
2014 Jul 09
5
[LLVMdev] [PATCH][REQUEST] Could someone submit this CSR Kalimba definitions patch please?
...arsed arch type. ArchType Arch; - /// The parsed subarchitecture type. - SubArchType SubArch; - /// The parsed vendor type. VendorType Vendor; @@ -209,9 +192,6 @@ /// getArch - Get the parsed architecture type of this triple. ArchType getArch() const { return Arch; } - /// getSubArch - get the parsed subarchitecture type for this triple. - SubArchType getSubArch() const { return SubArch; } - /// getVendor - Get the parsed vendor type of this triple. VendorType getVendor() const { return Vendor; } Index: lib/ExecutionEngine/IntelJITEvents/jitprofiling.c ===============...
2014 Sep 05
4
[LLVMdev] HELP! Recent failure on llvm buildbot
I'm working on lldb. I've just submitted a very small change (r217229) to Triple.h/.cpp. Soon after I get a mail subject: buildbot failure in LLVM on lld-x86_64-darwin13 Details: http://lab.llvm.org:8011/builders/lld-x86_64-darwin13/builds/2571 Blamelist: mg11 My small change certainly did not cause lldb's build to fail on my machine. I looked into the build-log:
2017 Aug 02
2
llvm-trunk errors with gcc-5.3.0 on SuSE Linux
...member function 'void {anonymous}::ARMTargetInfo::setArchInfo(unsigned int)': /export2/src/llvm-trunk/llvm/tools/clang/lib/Basic/Targets.cpp:5293:49: error: cannot convert 'unsigned int' to 'llvm::ARM::ArchKind' for argument '1' to 'llvm::StringRef llvm::ARM::getSubArch(llvm::ARM::ArchKind)' SubArch = llvm::ARM::getSubArch(ArchKind); ^ /export2/src/llvm-trunk/llvm/tools/clang/lib/Basic/Targets.cpp:5294:17: error: cannot convert 'llvm::ARM::ProfileKind' to 'unsigned int' in assignment...