Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
riscv-gcc-1
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
riscv-gcc-1
Commits
9ccf9681
Commit
9ccf9681
authored
Jun 04, 2003
by
Richard Henderson
Committed by
Richard Henderson
Jun 04, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* config/i386/i386.md (align): Use ASM_OUTPUT_*ALIGN macros.
From-SVN: r67461
parent
9dce39a4
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
4 deletions
+12
-4
gcc/ChangeLog
+4
-0
gcc/config/i386/i386.md
+8
-4
No files found.
gcc/ChangeLog
View file @
9ccf9681
2003-06-04 Richard Henderson <rth@redhat.com>
* config/i386/i386.md (align): Use ASM_OUTPUT_*ALIGN macros.
2003-06-04 Andrew Pinski <pinskia@physics.uc.edu>
* config/rs6000/darwin.h (RS6000_OUTPUT_BASENAME):
...
...
gcc/config/i386/i386.md
View file @
9ccf9681
...
...
@@ -14279,16 +14279,20 @@
(set_attr "modrm" "0")
(set_attr "ppro_uops" "one")])
;; UNSPEC_VOLATILE is considered to use and clobber all hard registers and
;; all of memory. This blocks insns from being moved across this point.
;; Align to 16-byte boundary, max skip in op0. Used to avoid
;; branch prediction penalty for the third jump in a 16-byte
;; block on K8.
(define_insn "align"
[
(unspec_volatile [(match_operand 0 "" "")
]
UNSPECV_ALIGN)]
""
{
#ifdef HAVE_GAS_MAX_SKIP_P2ALIGN
return ".p2align
\t
4,,%c0";
#ifdef ASM_OUTPUT_MAX_SKIP_ALIGN
ASM_OUTPUT_MAX_SKIP_ALIGN (asm_out_file, 4, INTVAL (operands
[
0
]
));
#else
ASM_OUTPUT_ALIGN (asm_out_file, 4);
#endif
return "";
}
[
(set_attr "length" "16")
]
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment