From 0c9ddf7346727ffc03c8bddf147c4af1fc01361c 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 llvm-svn: 26028 --- 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 {