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 | 49b3414322f14fb2bc233ddf71ff196e00c4aea5 (patch) | |
| tree | 42e2fae340486559ceb3a76adefa6cd71595639c | |
| parent | 15a6c4c444a49d2e1eeadc3b0d7aefa95a2ef5d3 (diff) | |
| download | bcm5719-llvm-49b3414322f14fb2bc233ddf71ff196e00c4aea5.tar.gz bcm5719-llvm-49b3414322f14fb2bc233ddf71ff196e00c4aea5.zip | |
fix an error compiling with -pedantic
llvm-svn: 26028
| -rw-r--r-- | llvm/include/llvm/InlineAsm.h | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/llvm/include/llvm/InlineAsm.h b/llvm/include/llvm/InlineAsm.h index 44dd062ae74..c1bd2d01779 100644 --- a/llvm/include/llvm/InlineAsm.h +++ b/llvm/include/llvm/InlineAsm.h @@ -70,7 +70,7 @@ public:    enum ConstraintPrefix {      isInput,            // 'x'      isOutput,           // '=x' -    isClobber,          // '~x' +    isClobber           // '~x'    };    struct ConstraintInfo { | 

