aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/InlineAsm.h
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2006-02-07 01:12:49 +0000
committerChris Lattner <sabre@nondot.org>2006-02-07 01:12:49 +0000
commit03a9939c619960e79af26bb5e131bb4abe114b6f (patch)
treeccfa29446129c9176851f9962dfd1a5de57f9780 /include/llvm/InlineAsm.h
parent763317de1bda41581b12915b31ba06c2e16450fe (diff)
downloadexternal_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/InlineAsm.h')
-rw-r--r--include/llvm/InlineAsm.h2
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 {