[llvm-commits] [hlvm] r38287 - /hlvm/trunk/test/return0/bitwise.hlx
Reid Spencer
reid at x10sys.com
Sat Jul 7 17:01:58 PDT 2007
Author: reid
Date: Sat Jul 7 19:01:58 2007
New Revision: 38287
URL: http://llvm.org/viewvc/llvm-project?rev=38287&view=rev
Log:
Make the constants s32 instead of u32 so they don't have type conflicts
with the result of the program.
Modified:
hlvm/trunk/test/return0/bitwise.hlx
Modified: hlvm/trunk/test/return0/bitwise.hlx
URL: http://llvm.org/viewvc/llvm-project/hlvm/trunk/test/return0/bitwise.hlx?rev=38287&r1=38286&r2=38287&view=diff
==============================================================================
--- hlvm/trunk/test/return0/bitwise.hlx (original)
+++ hlvm/trunk/test/return0/bitwise.hlx Sat Jul 7 19:01:58 2007
@@ -1,10 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<hlvm xmlns="http://hlvm.org/src/hlvm/Reader/XML/HLVM.rng" pubid="http://hlvm.org/src/hlvm/test/xml2xml/bitwise.hlx">
<bundle id="bitwise">
- <constant id="0f0f0f0f" type="u32"><hex>0f0f0f0f</hex></constant>
- <constant id="08080808" type="u32"><hex>08080808</hex></constant>
- <constant id="04040404" type="u32"><hex>04040404</hex></constant>
- <constant id="00000000" type="u32"><hex>00000000</hex></constant>
+ <constant id="0f0f0f0f" type="s32"><hex>0f0f0f0f</hex></constant>
+ <constant id="08080808" type="s32"><hex>08080808</hex></constant>
+ <constant id="04040404" type="s32"><hex>04040404</hex></constant>
+ <constant id="00000000" type="s32"><hex>00000000</hex></constant>
<program id="bitwise">
<block>
<ret>
More information about the llvm-commits
mailing list