diff options
author | Reid Spencer <reid@x10sys.com> | 2007-07-19 23:13:04 +0000 |
---|---|---|
committer | Reid Spencer <reid@x10sys.com> | 2007-07-19 23:13:04 +0000 |
commit | f234bed0dd88ef57e1e1884a3f807bba4fb68376 (patch) | |
tree | 1d769c299d5d5b0027b30ac5c301c6ff7613d28f /test/CFrontend | |
parent | ddd33276097047345100dae74d033b5829782961 (diff) | |
download | external_llvm-f234bed0dd88ef57e1e1884a3f807bba4fb68376.zip external_llvm-f234bed0dd88ef57e1e1884a3f807bba4fb68376.tar.gz external_llvm-f234bed0dd88ef57e1e1884a3f807bba4fb68376.tar.bz2 |
For PR1553:
Change the keywords for the zext and sext parameter attributes to be
zeroext and signext so they don't conflict with the keywords for the
instructions of the same name. This gets around the ambiguity.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@40069 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CFrontend')
-rw-r--r-- | test/CFrontend/2007-06-18-SextAttrAggregate.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CFrontend/2007-06-18-SextAttrAggregate.c b/test/CFrontend/2007-06-18-SextAttrAggregate.c index 2ba61ff..2eabd4f 100644 --- a/test/CFrontend/2007-06-18-SextAttrAggregate.c +++ b/test/CFrontend/2007-06-18-SextAttrAggregate.c @@ -1,4 +1,4 @@ -// RUN: %llvmgcc %s -o - -S -emit-llvm -O3 | grep {i8 sext} +// RUN: %llvmgcc %s -o - -S -emit-llvm -O3 | grep {i8 signext} // PR1513 struct s{ |