X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=gdb%2Fmake-target-delegates;h=a7a39b3289726ea95301b19b2d87896cb468c9af;hb=791b7405f4627ad65fd636d57adb9e5749d0b9e7;hp=329306d7f25bc4d322b6690d16269965840b8213;hpb=0dc327459b19e6765c8fe80957f5c8620611628e;p=deliverable%2Fbinutils-gdb.git diff --git a/gdb/make-target-delegates b/gdb/make-target-delegates index 329306d7f2..a7a39b3289 100755 --- a/gdb/make-target-delegates +++ b/gdb/make-target-delegates @@ -43,11 +43,9 @@ $POINTER_PART = qr,\s*(\*)?\s*,; $CP_SYMBOL = qr,[a-zA-Z_][a-zA-Z0-9_<>:]*,; # Match the return type when it is "ordinary". $SIMPLE_RETURN_PART = qr,((struct|class|enum|union)\s+)?${CP_SYMBOL}+,; -# Match the return type when it is a VEC. -$VEC_RETURN_PART = qr,VEC\s*\([^\)]+\),; # Match a return type. -$RETURN_PART = qr,((const|volatile)\s+)?(${SIMPLE_RETURN_PART}|${VEC_RETURN_PART})${POINTER_PART},; +$RETURN_PART = qr,((const|volatile)\s+)?(${SIMPLE_RETURN_PART})${POINTER_PART},; # Match "virtual". $VIRTUAL_PART = qr,virtual\s,;