Skip to content

Commit fb4e9c5

Browse files
committed
Fix bad constexpr
1 parent dff5c30 commit fb4e9c5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/lib/Object/IRSymtab.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ static constexpr StringLiteral PreservedSymbols[] = {
5454
"__stack_chk_guard",
5555
};
5656

57-
static constexpr bool isPreservedGlobalVarName(StringRef Name) {
57+
static bool isPreservedGlobalVarName(StringRef Name) {
5858
return PreservedSymbols[0] == Name || PreservedSymbols[1] == Name;
5959
}
6060

0 commit comments

Comments
 (0)