Skip to content
This repository was archived by the owner on Feb 5, 2019. It is now read-only.

Commit c61aa59

Browse files
committed
Remove the comma from the last enumerator to fix -pedantic warnings.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@172999 91177308-0d34-0410-b5e6-96231b3b80d8
1 parent 1e05bd9 commit c61aa59

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/llvm/Analysis/TargetTransformInfo.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ class TargetTransformInfo {
8989
enum TargetCostConstants {
9090
TCC_Free = 0, ///< Expected to fold away in lowering.
9191
TCC_Basic = 1, ///< The cost of a typical 'add' instruction.
92-
TCC_Expensive = 4, ///< The cost of a 'div' instruction on x86.
92+
TCC_Expensive = 4 ///< The cost of a 'div' instruction on x86.
9393
};
9494

9595
/// \brief Estimate the cost of a specific operation when lowered.

0 commit comments

Comments
 (0)