[CFLAA] Make a constant variable `const`. NFC.
authorGeorge Burgess IV <george.burgess.iv@gmail.com>
Sat, 9 Jul 2016 03:21:25 +0000 (03:21 +0000)
committerGeorge Burgess IV <george.burgess.iv@gmail.com>
Sat, 9 Jul 2016 03:21:25 +0000 (03:21 +0000)
`const` was dropped by r274958, and the lack of `const` makes GCC6
(correctly) complain.

llvm-svn: 274961

llvm/lib/Analysis/AliasAnalysisSummary.h

index 6bf137a..4e68bd6 100644 (file)
@@ -98,7 +98,7 @@ AliasAttrs getExternallyVisibleAttrs(AliasAttrs);
 //===----------------------------------------------------------------------===//
 
 /// The maximum number of arguments we can put into a summary.
-static unsigned MaxSupportedArgsInSummary = 50;
+LLVM_CONSTEXPR static unsigned MaxSupportedArgsInSummary = 50;
 
 /// We use InterfaceValue to describe parameters/return value, as well as
 /// potential memory locations that are pointed to by parameters/return value,