[PATCH] D50858: [M680x0] Add ELF and Triple info

Kristina Brooks via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Thu Sep 13 12:51:04 PDT 2018


kristina requested changes to this revision.
kristina added a comment.
This revision now requires changes to proceed.

Build failure, x86_64 Linux, Modular, ThinLTO, clean cache:

  /SourceCache/llvm-trunk-8.0.4116/lib/MC/MCExpr.cpp:200:8: error: use of undeclared identifier 'VK_GOTPC'; did you mean 'VK_GOT'?
    case VK_GOTPC: return "GOTPC";
         ^~~~~~~~
         VK_GOT
  /SourceCache/llvm-trunk-8.0.4116/include/llvm/MC/MCExpr.h:172:5: note: 'VK_GOT' declared here
      VK_GOT,
      ^
  /SourceCache/llvm-trunk-8.0.4116/lib/MC/MCExpr.cpp:200:8: error: duplicate case value 'VK_GOT'
    case VK_GOTPC: return "GOTPC";
         ^
  /SourceCache/llvm-trunk-8.0.4116/lib/MC/MCExpr.cpp:197:8: note: previous case defined here
    case VK_GOT: return "GOT";
         ^
  /SourceCache/llvm-trunk-8.0.4116/lib/MC/MCExpr.cpp:327:20: error: use of undeclared identifier 'VK_GOTPC'; did you mean 'VK_GOT'?
      .Case("gotpc", VK_GOTPC)
                     ^~~~~~~~
                     VK_GOT
  /SourceCache/llvm-trunk-8.0.4116/include/llvm/MC/MCExpr.h:172:5: note: 'VK_GOT' declared here
      VK_GOT,
      ^
  3 errors generated.


Repository:
  rL LLVM

https://reviews.llvm.org/D50858





More information about the llvm-commits mailing list