From: Chris Lattner Date: Tue, 7 Feb 2006 01:12:49 +0000 (+0000) Subject: fix an error compiling with -pedantic X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=03a9939c619960e79af26bb5e131bb4abe114b6f;p=oota-llvm.git fix an error compiling with -pedantic git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@26028 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/InlineAsm.h b/include/llvm/InlineAsm.h index 44dd062ae74..c1bd2d01779 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 {