From 03a9939c619960e79af26bb5e131bb4abe114b6f Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Tue, 7 Feb 2006 01:12:49 +0000 Subject: [PATCH] fix an error compiling with -pedantic git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@26028 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/InlineAsm.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 {