diff options
author | Dale Johannesen <dalej@apple.com> | 2008-09-26 23:45:53 +0000 |
---|---|---|
committer | Dale Johannesen <dalej@apple.com> | 2008-09-26 23:45:53 +0000 |
commit | 4598a4ece8e560840d25eb68f1055c4ecf1f15e7 (patch) | |
tree | 2041d78246089efec0aeb4b4c53ae4384d5dc6e0 | |
parent | b7a75a5a541a836d07cfc5ccebd70bb5e42f797f (diff) |
Fix a compiler warning.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@56714 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/AsmParser/llvmAsmParser.y | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/AsmParser/llvmAsmParser.y b/lib/AsmParser/llvmAsmParser.y index fa62b4712b..a049cea8d8 100644 --- a/lib/AsmParser/llvmAsmParser.y +++ b/lib/AsmParser/llvmAsmParser.y @@ -3298,7 +3298,6 @@ InstVal : ArithmeticOps Types ValueRef ',' ValueRef { //FIXME : In 3.0, stop accepting zext, sext and inreg as optional function //attributes. Attributes RetAttrs = 0; - Attributes TmpAttr = $8; if ($8 != Attribute::None) { if ($8 & Attribute::ZExt) { RetAttrs = RetAttrs | Attribute::ZExt; |