diff options
author | Shantonu Sen <ssen@apple.com> | 2010-05-06 14:57:47 +0000 |
---|---|---|
committer | Shantonu Sen <ssen@apple.com> | 2010-05-06 14:57:47 +0000 |
commit | 94231eec1fd1457a5d6b6bbdbc837616bed8b5ea (patch) | |
tree | 9d409109be08fd3abdb19dcd60484aeab7c5e91f | |
parent | b0ceb764b8a6c4d1ffdb4af07061dc2228788389 (diff) | |
download | bcm5719-llvm-94231eec1fd1457a5d6b6bbdbc837616bed8b5ea.tar.gz bcm5719-llvm-94231eec1fd1457a5d6b6bbdbc837616bed8b5ea.zip |
Fix "warning: extra ';' inside a struct or union" when building llvm with clang
llvm-svn: 103179
-rw-r--r-- | llvm/lib/Target/ARM/ARMSubtarget.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Target/ARM/ARMSubtarget.h b/llvm/lib/Target/ARM/ARMSubtarget.h index 3ba0a2e9410..8332bba22db 100644 --- a/llvm/lib/Target/ARM/ARMSubtarget.h +++ b/llvm/lib/Target/ARM/ARMSubtarget.h @@ -130,8 +130,8 @@ protected: 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; } |