diff options
| author | Daniel Dunbar <daniel@zuster.org> | 2009-12-18 20:58:47 +0000 | 
|---|---|---|
| committer | Daniel Dunbar <daniel@zuster.org> | 2009-12-18 20:58:47 +0000 | 
| commit | 91b640abfc564ce58b3bfa5cbda610b5749cf20e (patch) | |
| tree | 40a9049dba9952abeea4a9e0437566609a8c6d66 /clang/lib/CodeGen/CGBuiltin.cpp | |
| parent | 2c5792a6bd422da6f78e9357f57f88ead8f196a6 (diff) | |
| download | bcm5719-llvm-91b640abfc564ce58b3bfa5cbda610b5749cf20e.tar.gz bcm5719-llvm-91b640abfc564ce58b3bfa5cbda610b5749cf20e.zip | |
Fix a few MSVC warnings.
llvm-svn: 91714
Diffstat (limited to 'clang/lib/CodeGen/CGBuiltin.cpp')
| -rw-r--r-- | clang/lib/CodeGen/CGBuiltin.cpp | 4 | 
1 files changed, 1 insertions, 3 deletions
| diff --git a/clang/lib/CodeGen/CGBuiltin.cpp b/clang/lib/CodeGen/CGBuiltin.cpp index a3f83a77be5..a791fd04f4f 100644 --- a/clang/lib/CodeGen/CGBuiltin.cpp +++ b/clang/lib/CodeGen/CGBuiltin.cpp @@ -853,7 +853,5 @@ Value *CodeGenFunction::EmitX86BuiltinExpr(unsigned BuiltinID,  Value *CodeGenFunction::EmitPPCBuiltinExpr(unsigned BuiltinID,                                             const CallExpr *E) { -  switch (BuiltinID) { -  default: return 0; -  } +  return 0;  } | 

