diff options
author | Tom Stellard <thomas.stellard@amd.com> | 2013-04-29 22:23:54 +0000 |
---|---|---|
committer | Tom Stellard <thomas.stellard@amd.com> | 2013-04-29 22:23:54 +0000 |
commit | 8367067e02a84f326aa06cb22cc66805421cfe3f (patch) | |
tree | 5e88893aa6840e5dd326e8f0adadb5808e0a51ce /llvm/lib/Target | |
parent | 2b06530ed6a2108038b40ead5ceb469d371bad9a (diff) | |
download | llvm-8367067e02a84f326aa06cb22cc66805421cfe3f.zip llvm-8367067e02a84f326aa06cb22cc66805421cfe3f.tar.gz llvm-8367067e02a84f326aa06cb22cc66805421cfe3f.tar.bz2 |
R600: Fix encoding of CF_END_{EG, R600} instructions
The EOP bit was not being encoded.
llvm-svn: 180734
Diffstat (limited to 'llvm/lib/Target')
-rw-r--r-- | llvm/lib/Target/R600/R600Instructions.td | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/Target/R600/R600Instructions.td b/llvm/lib/Target/R600/R600Instructions.td index f74c5a6..5757f64 100644 --- a/llvm/lib/Target/R600/R600Instructions.td +++ b/llvm/lib/Target/R600/R600Instructions.td @@ -906,6 +906,7 @@ class CF_WORD1_EG { let Word1{9-8} = COND; let Word1{15-10} = COUNT; let Word1{20} = VALID_PIXEL_MODE; + let Word1{21} = END_OF_PROGRAM; let Word1{29-22} = CF_INST; let Word1{31} = BARRIER; } |