mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-27 14:34:58 +00:00
Remove a gross and crufty "feature" that was never documented and doesn't work.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14809 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
8642763f11
commit
e002694ce2
@ -179,7 +179,6 @@ false { return FALSETOK; }
|
||||
declare { return DECLARE; }
|
||||
global { return GLOBAL; }
|
||||
constant { return CONSTANT; }
|
||||
const { return CONST; }
|
||||
internal { return INTERNAL; }
|
||||
linkonce { return LINKONCE; }
|
||||
weak { return WEAK; }
|
||||
|
@ -1424,12 +1424,7 @@ FunctionList : FunctionList Function {
|
||||
};
|
||||
|
||||
// ConstPool - Constants with optional names assigned to them.
|
||||
ConstPool : ConstPool OptAssign CONST ConstVal {
|
||||
// FIXME: THIS SHOULD REALLY BE ELIMINATED. It is totally unneeded.
|
||||
if (!setValueNameMergingDuplicates($4, $2))
|
||||
InsertValue($4);
|
||||
}
|
||||
| ConstPool OptAssign TYPE TypesV { // Types can be defined in the const pool
|
||||
ConstPool : ConstPool OptAssign TYPE TypesV { // Types can be defined in the const pool
|
||||
// Eagerly resolve types. This is not an optimization, this is a
|
||||
// requirement that is due to the fact that we could have this:
|
||||
//
|
||||
|
Loading…
x
Reference in New Issue
Block a user