diff options
author | Charles Davis <cdavis@mines.edu> | 2011-05-26 05:24:15 +0000 |
---|---|---|
committer | Charles Davis <cdavis@mines.edu> | 2011-05-26 05:24:15 +0000 |
commit | 329cf66e84ae73422e954d493b610aa501902d0c (patch) | |
tree | 2eff40a9abde780a38f2265b062425bf8dac72cd /include/llvm/Support | |
parent | fad99ae6e7ecb66eaaab3a42d6e6e97550e13349 (diff) | |
download | external_llvm-329cf66e84ae73422e954d493b610aa501902d0c.zip external_llvm-329cf66e84ae73422e954d493b610aa501902d0c.tar.gz external_llvm-329cf66e84ae73422e954d493b610aa501902d0c.tar.bz2 |
Fix definitions of UOP_SaveXMM128, UOP_SaveXMM128Big, and UOP_PushMachFrame
to match Microsoft's definitions.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@132112 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Support')
-rw-r--r-- | include/llvm/Support/Win64EH.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/Support/Win64EH.h b/include/llvm/Support/Win64EH.h index dc9156b..8d74e10 100644 --- a/include/llvm/Support/Win64EH.h +++ b/include/llvm/Support/Win64EH.h @@ -30,7 +30,7 @@ enum UnwindOpcodes { UOP_SetFPReg, UOP_SaveNonVol, UOP_SaveNonVolBig, - UOP_SaveXMM128, + UOP_SaveXMM128 = 8, UOP_SaveXMM128Big, UOP_PushMachFrame }; |