diff options
author | Chris Lattner <sabre@nondot.org> | 2006-02-07 01:12:49 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2006-02-07 01:12:49 +0000 |
commit | 03a9939c619960e79af26bb5e131bb4abe114b6f (patch) | |
tree | ccfa29446129c9176851f9962dfd1a5de57f9780 /include/llvm | |
parent | 763317de1bda41581b12915b31ba06c2e16450fe (diff) | |
download | external_llvm-03a9939c619960e79af26bb5e131bb4abe114b6f.zip external_llvm-03a9939c619960e79af26bb5e131bb4abe114b6f.tar.gz external_llvm-03a9939c619960e79af26bb5e131bb4abe114b6f.tar.bz2 |
fix an error compiling with -pedantic
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@26028 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm')
-rw-r--r-- | include/llvm/InlineAsm.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/InlineAsm.h b/include/llvm/InlineAsm.h index 44dd062..c1bd2d0 100644 --- a/include/llvm/InlineAsm.h +++ b/include/llvm/InlineAsm.h @@ -70,7 +70,7 @@ public: enum ConstraintPrefix { isInput, // 'x' isOutput, // '=x' - isClobber, // '~x' + isClobber // '~x' }; struct ConstraintInfo { |