diff options
author | Douglas Gregor <dgregor@apple.com> | 2010-01-22 15:41:14 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2010-01-22 15:41:14 +0000 |
commit | 0599df16a69d42bf5f2c4951712f9011a6dc2610 (patch) | |
tree | 663ac06bb167abf3a79ebbb90966c965d873ade2 /clang/lib/CodeGen/TargetInfo.h | |
parent | d6b28fc6ad2cc325ab43376af8c71dbe0e25eddb (diff) | |
download | bcm5719-llvm-0599df16a69d42bf5f2c4951712f9011a6dc2610.tar.gz bcm5719-llvm-0599df16a69d42bf5f2c4951712f9011a6dc2610.zip |
Eliminate some Clang warnings
llvm-svn: 94177
Diffstat (limited to 'clang/lib/CodeGen/TargetInfo.h')
-rw-r--r-- | clang/lib/CodeGen/TargetInfo.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/lib/CodeGen/TargetInfo.h b/clang/lib/CodeGen/TargetInfo.h index 495b22fc284..58b7b79224f 100644 --- a/clang/lib/CodeGen/TargetInfo.h +++ b/clang/lib/CodeGen/TargetInfo.h @@ -34,7 +34,7 @@ namespace clang { ABIInfo *Info; public: // WARNING: Acquires the ownership of ABIInfo. - TargetCodeGenInfo(ABIInfo *info = 0):Info(info) { }; + TargetCodeGenInfo(ABIInfo *info = 0):Info(info) { } virtual ~TargetCodeGenInfo(); /// getABIInfo() - Returns ABI info helper for the target. @@ -43,7 +43,7 @@ namespace clang { /// SetTargetAttributes - Provides a convenient hook to handle extra /// target-specific attributes for the given global. virtual void SetTargetAttributes(const Decl *D, llvm::GlobalValue *GV, - CodeGen::CodeGenModule &M) const { }; + CodeGen::CodeGenModule &M) const { } }; } |