Skip to content

Commit

Permalink
Fix "warning: extra ';' inside a struct or union" when building llvm …
Browse files Browse the repository at this point in the history
…with clang

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@103179 91177308-0d34-0410-b5e6-96231b3b80d8
shantonusen committed May 6, 2010
1 parent 5fe03c0 commit eae216c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/Target/ARM/ARMSubtarget.h
Original file line number Diff line number Diff line change
@@ -130,8 +130,8 @@ class ARMSubtarget : public TargetSubtarget {
bool hasNEON() const { return ARMFPUType >= NEON; }
bool useNEONForSinglePrecisionFP() const {
return hasNEON() && UseNEONForSinglePrecisionFP; }
bool hasDivide() const { return HasHardwareDivide; };
bool hasT2ExtractPack() const { return HasT2ExtractPack; };
bool hasDivide() const { return HasHardwareDivide; }
bool hasT2ExtractPack() const { return HasT2ExtractPack; }
bool useVMLx() const {return hasVFP2() && !SlowVMLx; }

bool hasFP16() const { return HasFP16; }

0 comments on commit eae216c

Please sign in to comment.