mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-02-01 05:01:59 +01:00
Remove the comma from the last enumerator to fix -pedantic warnings.
llvm-svn: 172999
This commit is contained in:
parent
6fdaccc9cd
commit
b0321f928d
@ -89,7 +89,7 @@ public:
|
||||
enum TargetCostConstants {
|
||||
TCC_Free = 0, ///< Expected to fold away in lowering.
|
||||
TCC_Basic = 1, ///< The cost of a typical 'add' instruction.
|
||||
TCC_Expensive = 4, ///< The cost of a 'div' instruction on x86.
|
||||
TCC_Expensive = 4 ///< The cost of a 'div' instruction on x86.
|
||||
};
|
||||
|
||||
/// \brief Estimate the cost of a specific operation when lowered.
|
||||
|
Loading…
x
Reference in New Issue
Block a user