[PATCH] D83415: [Solaris] Fix Solaris build bots

Christopher Tetreault via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Wed Jul 8 12:21:42 PDT 2020


This revision was not accepted when it landed; it landed in state "Needs Review".
This revision was automatically updated to reflect the committed changes.
Closed by commit rGd2eb40937976: [Solaris] Fix Solaris build bots (authored by ctetreau).

Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D83415/new/

https://reviews.llvm.org/D83415

Files:
  llvm/unittests/IR/ConstantsTest.cpp


Index: llvm/unittests/IR/ConstantsTest.cpp
===================================================================
--- llvm/unittests/IR/ConstantsTest.cpp
+++ llvm/unittests/IR/ConstantsTest.cpp
@@ -646,10 +646,10 @@
   Type *Int8Ty = Type::getInt8Ty(Context);
 
   for (unsigned Min : {1, 2, 8}) {
-    ElementCount SEC = {Min, true};
-    ElementCount FEC = {Min, false};
+    ElementCount ScalableEC = {Min, true};
+    ElementCount FixedEC = {Min, false};
 
-    for (auto EC : {SEC, FEC}) {
+    for (auto EC : {ScalableEC, FixedEC}) {
       for (auto *Ty : {FloatTy, Int32Ty, Int8Ty}) {
         Constant *Zero = Constant::getNullValue(Ty);
         Constant *One = Constant::getAllOnesValue(Ty);


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D83415.276520.patch
Type: text/x-patch
Size: 700 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20200708/94d9aa93/attachment.bin>


More information about the llvm-commits mailing list