diff options
author | Chris Lattner <sabre@nondot.org> | 2005-10-08 01:24:19 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2005-10-08 01:24:19 +0000 |
commit | b995c5e1185840ee8574f827d7c7cb0db8dc4242 (patch) | |
tree | e9e3ddbe59667e7cd73beb5ca4c2bbbb527489b8 | |
parent | 02f77d1e8357c0abe3fc51b421cb6c0be006f3a0 (diff) |
remove a comma to compile with pedantic gcc
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@23667 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/llvm/Value.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/Value.h b/include/llvm/Value.h index f71491d36e..e02cec132e 100644 --- a/include/llvm/Value.h +++ b/include/llvm/Value.h @@ -158,7 +158,7 @@ public: // Markers: ConstantFirstVal = FunctionVal, - ConstantLastVal = ConstantPointerNullVal, + ConstantLastVal = ConstantPointerNullVal }; unsigned getValueType() const { return SubclassID; |